summaryrefslogtreecommitdiffstats
path: root/tests/preprocessor/file-identity/c.h
blob: eb6cd1c42a73d2ed1a1980b5ce28e2aeb8225b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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; }