mirror of
https://github.com/NixOS/nix.git
synced 2025-11-15 15:02:42 +01:00
`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).
9 lines
134 B
C
9 lines
134 B
C
#include <stdio.h>
|
|
|
|
#include "fnord/indirect.h"
|
|
|
|
int main(int argc, char * * argv)
|
|
{
|
|
printf(HELLO " " WHAT "\n");
|
|
return 0;
|
|
}
|