blob: b5f3daea824b1da5a65c625964f8b9684f1f00ef (
plain)
1
2
3
4
5
6
7
8
9
10
|
#if HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#include <stdio.h>
int print_hello (char *name)
{
return printf ("Hello %s!\n", (name) ? name : "world");
}
|