1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-06 00:51:00 +01:00

* Automatically determine header file dependencies using the

`findIncludes' function.  The current implementation is impure and
  therefore not correct: it gathers header file dependencies only once
  for a specific path (due to caching).
This commit is contained in:
Eelco Dolstra 2004-07-06 16:05:28 +00:00
parent fa50c0849e
commit 7d386d5c29
7 changed files with 62 additions and 2 deletions

View file

@ -0,0 +1,9 @@
#include <stdio.h>
#include "fnord/indirect.h"
int main(int argc, char * * argv)
{
printf(HELLO " " WHAT "\n");
return 0;
}