[cmake-commits] alex committed main.c 1.2 1.3

cmake-commits at cmake.org cmake-commits at cmake.org
Sun Jul 8 22:06:34 EDT 2007


Update of /cvsroot/CMake/CMake/Tests/Assembler
In directory public:/mounts/ram/cvs-serv27330

Modified Files:
	main.c 
Log Message:
COMP: fix test

Alex



Index: main.c
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/Assembler/main.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- main.c	6 Jul 2007 12:53:16 -0000	1.2
+++ main.c	9 Jul 2007 02:06:32 -0000	1.3
@@ -2,10 +2,10 @@
 
 #ifdef __CLASSIC_C__
 int main(){
-  int ac;
-  char*av[];
+  int argc;
+  char*argv[];
 #else
-int main(int ac, char*av[]){
+int main(int argc, char*argv[]){
 #endif
 {
   printf("hello assembler world, %d arguments  given\n", argc);



More information about the Cmake-commits mailing list