diff options
Diffstat (limited to 'make/examples/not-so-simple-header-auto/foo')
-rw-r--r-- | make/examples/not-so-simple-header-auto/foo/fnord/indirect.h | 3 | ||||
-rw-r--r-- | make/examples/not-so-simple-header-auto/foo/hello.c | 9 |
2 files changed, 0 insertions, 12 deletions
diff --git a/make/examples/not-so-simple-header-auto/foo/fnord/indirect.h b/make/examples/not-so-simple-header-auto/foo/fnord/indirect.h deleted file mode 100644 index 2fde1e26c1dd..000000000000 --- a/make/examples/not-so-simple-header-auto/foo/fnord/indirect.h +++ /dev/null @@ -1,3 +0,0 @@ -#define HELLO "Hello" - -#include "../../bar/hello.h" diff --git a/make/examples/not-so-simple-header-auto/foo/hello.c b/make/examples/not-so-simple-header-auto/foo/hello.c deleted file mode 100644 index 7d5b402ce5c2..000000000000 --- a/make/examples/not-so-simple-header-auto/foo/hello.c +++ /dev/null @@ -1,9 +0,0 @@ -#include <stdio.h> - -#include "fnord/indirect.h" - -int main(int argc, char * * argv) -{ - printf(HELLO " " WHAT "\n"); - return 0; -} |