| # | Line 11 | Line 11 | static const char RCSid[] = "$Id$"; | |
|---|---|---|
| 11 | ||
| 12 | #include <stdlib.h> | |
| 13 | ||
| 14 | < | extern void eputs(); |
| 15 | < | extern void quit(); |
| 14 | > | #include "rterror.h" |
| 15 | ||
| 16 | + | |
| 17 | #if 1 | |
| 18 | ||
| 19 | char * | |
| # | Line 30 | Line 30 | register char *s; | |
| 30 | eputs("out of memory in savqstr"); | |
| 31 | quit(1); | |
| 32 | } | |
| 33 | < | for (cp = newp; *cp++ = *s++; ) /* inline strcpy() */ |
| 33 | > | for (cp = newp; (*cp++ = *s++); ) /* inline strcpy() */ |
| 34 | ; | |
| 35 | return(newp); /* return new location */ | |
| 36 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |