mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
11 lines
143 B
C
11 lines
143 B
C
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int
|
||
|
main( int argc, char *argv[] )
|
||
|
{
|
||
|
printf( "main\n" );
|
||
|
exit(EXIT_SUCCESS);
|
||
|
}
|