Ticket #15363: link_elf.cpp

File link_elf.cpp, 190 bytes (added by alpopa, 5 years ago)

example of failing code

Line 
1#include <stdio.h>
2#include <bsd/sys/link_elf.h>
3
4int main()
5{
6#if defined _SYS_LINK_ELF_H_
7 printf("link_elf.h included\n");
8#else
9 printf("link_elf.h not included\n");
10#endif
11 return 0;
12}