blob: 3940453fbe07eabe9ce85986848b574861ceb25d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <stdio.h>
#include <stdlib.h>
void atex()
{
printf("atex\n");
}
int main()
{
printf("nonextline");
// fflush(stdout);
// atexit(&atex);
return EXIT_SUCCESS;
}
|