summaryrefslogtreecommitdiff
path: root/tests/preprocessor/file-identity/b.h
blob: ba131c6532dfeccffe665c35743165f024278d4f (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "c.h"

#ifdef B_H
#   error "Shouldn't be included twice"
#endif

#define B_H

float foo(float x) { return x; }