Inital simplefied chinese translation of cups, based zh_TW
[i18n-zh.git] / apache / test / hello.c
blob20f414b563135df1f28d4bc2f3c3872391e39823
1 /*
2 * lsbcc3 -march=i686 -O2 hello.c
4 * $ ldd a.out
5 * linux-gate.so.1 => (0xffffe000)
6 * libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb7f36000)
7 * libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7f11000)
8 * libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7ddf000)
9 * /lib/ld-lsb.so.3 (0xb7f56000)
12 #include <stdio.h>
14 int
15 main(int argc, char *argv[])
17 fprintf(stdout, "Hello, World !\n");
19 return 0;