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

#include "c.h"

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

#define B_H

float foo(float x)
{
    return x;
}