changeset 1036:4e4a92dcd94e

[project @ 1995-01-16 19:17:57 by jwe]
author jwe
date Mon, 16 Jan 1995 19:17:57 +0000
parents 482d40c91fea
children d383ec996ee1
files scripts/image/octtopnm.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/image/octtopnm.c	Sun Jan 15 22:40:56 1995 +0000
+++ b/scripts/image/octtopnm.c	Mon Jan 16 19:17:57 1995 +0000
@@ -5,7 +5,7 @@
 
 #include <stdio.h>
 #include <string.h>
-#include <malloc.h>
+#include <stdlib.h>
 
 /* usage: octtopnm [-a] octfile */
 
@@ -299,4 +299,6 @@
       }
     }
   }
+
+  return 0;
 }