diff options
Diffstat (limited to 'other-licenses/gyp-deps/tools/gyp/test/link-dependency/main.c')
-rw-r--r-- | other-licenses/gyp-deps/tools/gyp/test/link-dependency/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/other-licenses/gyp-deps/tools/gyp/test/link-dependency/main.c b/other-licenses/gyp-deps/tools/gyp/test/link-dependency/main.c new file mode 100644 index 000000000..543d8b695 --- /dev/null +++ b/other-licenses/gyp-deps/tools/gyp/test/link-dependency/main.c @@ -0,0 +1,7 @@ +#include <stdio.h> +#include <stdlib.h> +int main() { + void *p = malloc(1); + printf("p: %p\n", p); + return 0; +} |