don't use stdio.h
authorceriel <none@none>
Tue, 5 Jul 1988 10:53:53 +0000 (10:53 +0000)
committerceriel <none@none>
Tue, 5 Jul 1988 10:53:53 +0000 (10:53 +0000)
lang/basic/src/basic.lex
lang/basic/src/bem.h

index e9e1118..3af7a4e 100644 (file)
@@ -225,7 +225,7 @@ File *stream;
             if ( characters_left == 0 ) { /* Nothing read */
                 if ( external_bufp == buffer ) {
                     *external_bufp = '\0';
-                    return(NULL);  /* EOF */
+                    return(0);  /* EOF */
                 } else { /* Something was already copied */
                     *external_bufp = '\0';
                     return(buffer);
@@ -241,7 +241,7 @@ getline()
 {
        /* get next input line */
 
-       if ( our_fgets(inputline,MAXLINELENGTH,yyin) == NULL)
+       if ( our_fgets(inputline,MAXLINELENGTH,yyin) == 0)
                return(FALSE);
        yylineno ++;
        if ( strindex(inputline,'\n') == 0)
index fdcccae..b0d41e9 100644 (file)
@@ -3,7 +3,6 @@
  * See the copyright notice in the ACK home directory, in the file "Copyright".
  */
 
-#include <stdio.h>
 #include <ctype.h>
 #include <signal.h>
 #include <system.h>