mirror of
https://gitlab.com/procps-ng/procps.git
synced 2024-12-03 23:15:06 +08:00
b56fd9d358
In order to avoid compiling the same source files twice, with and without the TEST_PROGRAM define. Tested that the build still works and that `make distcheck` works as expected. Tested that the test_* programs in lib/ keep working. (Though they are not really invoked by `make check` and in particular test_nsutils is quite useless, test_fileutils also quite poor.) Signed-off-by: Filipe Brandenburger <filbranden@google.com>
11 lines
173 B
C
11 lines
173 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "fileutils.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
atexit(close_stdout);
|
|
printf("Hello, World!\n");
|
|
return EXIT_SUCCESS;
|
|
}
|