diff options
author | Martin Mares <mj@ucw.cz> | 1998-04-28 14:39:34 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-04-28 14:39:34 +0000 |
commit | 1feea03e7463d8eaeb00d5df6c2cd3e8e20f2bcd (patch) | |
tree | 70ba86e2c60b759f7740c0d28e6abdaaf60241ea /nest/main.c | |
parent | c40e05a0dffa33a8724e56121a2b6dcdfa9183e0 (diff) |
Changed #include <x/y> to #include "x/y" for our local includes, so that
gcc -MM can be used to separate them from the system ones.
Added automatic generation of dependencies.
Diffstat (limited to 'nest/main.c')
-rw-r--r-- | nest/main.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/nest/main.c b/nest/main.c index 8f60f272..8c269386 100644 --- a/nest/main.c +++ b/nest/main.c @@ -6,10 +6,9 @@ * Can be freely distributed and used under the terms of the GNU GPL. */ -#include <nest/bird.h> -#include <lib/lists.h> - -#include <nest/resource.h> +#include "nest/bird.h" +#include "lib/lists.h" +#include "lib/resource.h" int main(void) |