summaryrefslogtreecommitdiffstats
path: root/tests/preprocessor/file-identity/c.h
blob: bb8e1c698ebf60c54c418f12b818c0ed97e59fcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "b.h"

#ifdef C_H
#error "c.h shouldn't be included twice"
#endif

#define C_H

float bar(float x)
{
    return x;
}