blob: 307d7f785deed6e2792b19de6b582a80ddba2fde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* $Id: rev3,v 1.1 2006/03/11 06:22:47 ray Exp $ */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* a comment */
/* main function */
int
main(int argc, char **argv)
{
printf("foo bar\n");
return (0);
}
|