File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ LIB=usr/local/lib
44MAN =usr/local/man/man1
55
66CC = gcc -w
7- CFLAGS =
8- EX =
7+ CFLAGS =
8+ EX =
99YACC = byacc
1010
1111OBJS = big.o cmbnms.o data.o lex.o reduce.o steer.o trans.o types.o utf8.o y.tab.o
Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ void acterror(void);
302302word alfasort (word );
303303void dieclean (void );
304304word fixtype (word ,word );
305- word fm_time (char * ); /* assumes type word same size as time_t */
305+ word fm_time (const char * ); /* assumes type word same size as time_t */
306306void fpe_error (void );
307307word parseline (word ,FILE * ,word );
308308word process (void );
@@ -311,8 +311,8 @@ void reset(void);
311311word reverse (word );
312312word shunt (word ,word );
313313word size (word );
314- void syntax (char * );
315- void yyerror (char * );
314+ void syntax (const char * );
315+ void yyerror (const char * );
316316
317317/* function prototypes - types.c */
318318word add1 (word ,word );
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ char *dir;
103103 strcat (cmd ," " );
104104 strcat (cmd ,"contents" );
105105 system (cmd );
106- printf ("::please type selection number (or return to exit):" );
106+ printf ("Please type selection number (or return to exit): " );
107107 /* read remainder of line into next, less leading white space */
108108 np = next ; c = getchar ();
109109 while (c == ' ' || c == '\t' )c = getchar ();
@@ -151,7 +151,7 @@ char *dir;
151151 }
152152 else
153153 { printf (
154- "::next selection (or return to go back to menu, or q to quit):"
154+ "Next selection (or return to go back to menu, or q to quit):"
155155 );
156156 /* read remainder of line into next, less leading white space */
157157 strcpy (last ,next );
You can’t perform that action at this time.
0 commit comments