summaryrefslogtreecommitdiff
path: root/tests/tests2/43_void_param.c
blob: de17098b2267cd7072ed13ab32abd4a51ef9d5cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

void fred(void)
{
   printf("yo\n");
}

int main()
{
   fred();

   return 0;
}

/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/