]> git.eshelyaron.com Git - emacs.git/commitdiff
Convert some function definitions to standard C.
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 25 Apr 2011 21:36:06 +0000 (14:36 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 25 Apr 2011 21:36:06 +0000 (14:36 -0700)
* src/alloc.c (check_sblock, check_string_bytes)
(check_string_free_list): Convert to standard C.

src/ChangeLog
src/alloc.c

index 0350d36ea06bbe8f799be8ba154bd505bfa19428..1985cdc376821b8e3fe482bcbe163e09c375b3d4 100644 (file)
@@ -1,3 +1,8 @@
+2011-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * alloc.c (check_sblock, check_string_bytes)
+       (check_string_free_list): Convert to standard C.
+
 2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * w32.c (emacs_gnutls_push): Fix typo.
index 412527b41a0a0910e361406a32407b6892b26ba2..be640b6a52cf6a3b36219b4caf85cf8c2bbccedd 100644 (file)
@@ -1706,8 +1706,7 @@ string_bytes (struct Lisp_String *s)
 /* Check validity of Lisp strings' string_bytes member in B.  */
 
 static void
-check_sblock (b)
-     struct sblock *b;
+check_sblock (struct sblock *b)
 {
   struct sdata *from, *end, *from_end;
 
@@ -1740,8 +1739,7 @@ check_sblock (b)
    recently allocated strings.  Used for hunting a bug.  */
 
 static void
-check_string_bytes (all_p)
-     int all_p;
+check_string_bytes (int all_p)
 {
   if (all_p)
     {
@@ -1769,7 +1767,7 @@ check_string_bytes (all_p)
    This may catch buffer overrun from a previous string.  */
 
 static void
-check_string_free_list ()
+check_string_free_list (void)
 {
   struct Lisp_String *s;