]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/ecrt0.c: Revert conversion to standard C.
authorDan Nicolaescu <dann@ics.uci.edu>
Tue, 6 Jul 2010 02:22:54 +0000 (19:22 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Tue, 6 Jul 2010 02:22:54 +0000 (19:22 -0700)
src/ChangeLog
src/ecrt0.c

index 7071c62b4912f077a9bdae8a580e7b6f76f4f51b..bdde8339b501ed633e099ea96b56266b25300662 100644 (file)
@@ -1,3 +1,7 @@
+2010-07-06  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * ecrt0.c: Revert conversion to standard C.
+
 2010-07-05  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * vm-limit.c (memory_warnings):
index 98aac15186225e0c74982ac5fff2257febef9ed3..458771319c7cd89826a8550008f1495c0ce4d9f6 100644 (file)
@@ -61,21 +61,23 @@ int data_start = 0;
 
 char **environ;
 
-static start1 (int bogus_fp, int argc, char *xargv);
+static start1 ();
 
 /* Define symbol "start": here; some systems want that symbol.  */
 asm("  .text           ");
 asm("  .globl start    ");
 asm("  start:          ");
 
-_start (void)
+_start ()
 {
 /* On vax, nothing is pushed here  */
   start1 ();
 }
 
 static
-start1 (int bogus_fp, int argc, char *xargv)
+start1 (bogus_fp, argc, xargv)
+     int argc;
+     char *xargv;
 {
   register char **argv = &xargv;
   environ = argv + argc + 1;