14 lines
328 B
C
14 lines
328 B
C
|
// This file tests that problematic functions (glibc-hacks) work.
|
||
|
// Also see https://github.com/ziglang/zig/issues/9485
|
||
|
|
||
|
#define _FILE_OFFSET_BITS 64
|
||
|
#include <unistd.h>
|
||
|
#include <fcntl.h>
|
||
|
#include <resolv.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
printf("Your lucky numbers are %p and %p\n", fcntl, res_search);
|
||
|
return 0;
|
||
|
}
|