]> granicus.if.org Git - flex/commitdiff
change crlf line ending to lf
authorWill Estes <westes575@gmail.com>
Wed, 2 Apr 2014 19:59:14 +0000 (15:59 -0400)
committerWill Estes <westes575@gmail.com>
Wed, 2 Apr 2014 19:59:14 +0000 (15:59 -0400)
lib/malloc.c

index d4c605f8840b868cfa1e4d05c166535eb64262f8..75e8ef97ca80fb4644c208f5f108f7d764437b73 100755 (executable)
@@ -1,17 +1,17 @@
-     #include <config.h>\r
-     #undef malloc\r
-     \r
-     #include <sys/types.h>\r
-     \r
-     void *malloc ();\r
-     \r
-     /* Allocate an N-byte block of memory from the heap.\r
-        If N is zero, allocate a 1-byte block.  */\r
-     \r
-     void *\r
-     rpl_malloc (size_t n)\r
-     {\r
-       if (n == 0)\r
-         n = 1;\r
-       return malloc (n);\r
-     }\r
+     #include <config.h>
+     #undef malloc
+     
+     #include <sys/types.h>
+     
+     void *malloc ();
+     
+     /* Allocate an N-byte block of memory from the heap.
+        If N is zero, allocate a 1-byte block.  */
+     
+     void *
+     rpl_malloc (size_t n)
+     {
+       if (n == 0)
+         n = 1;
+       return malloc (n);
+     }