- added test .c file for testing rcs-keywords

This commit is contained in:
Alexander Scheipner
2013-05-02 20:28:34 +02:00
parent 04c0f5bc91
commit 8ccd174847

14
hello.c Normal file
View File

@@ -0,0 +1,14 @@
/**
* @file hello.c
* @author @$Author$
* @date @$Date$
* @version @$Revision$
*
* $Id$
*/
#include "stdio.h"
int main(int argc, char *argv[])
printf("Hello, world!");
}