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