- #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);
+ }