summaryrefslogtreecommitdiff
path: root/doc/examples/strict-mode/files/libhello/libhello.c
blob: 7d0eca340db8526778efe6674569626e86081f16 (plain)
1
2
3
4
5
6
7
8
9
/*
 * libhello.c - The hello library
 */
#include <stdio.h>

void hello(const char *person)
{
  printf("Good morning %s\n", person);
}