From 8ccd17484768f4eb1cf487a9bff824fc8feefbab Mon Sep 17 00:00:00 2001 From: Alexander Scheipner Date: Thu, 2 May 2013 20:28:34 +0200 Subject: [PATCH] - added test .c file for testing rcs-keywords --- hello.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..21bb0c7 --- /dev/null +++ b/hello.c @@ -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!"); +}