diff options
Diffstat (limited to '4/3.c')
| -rw-r--r-- | 4/3.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -75,7 +75,7 @@ double pop() { } } -int getch() { return (buf > 0) ? buf[--bufp] : getchar(); } +int getch() { return (bufp > 0) ? buf[--bufp] : getchar(); } void ungetch(int c) { if (bufp >= BUFSIZE) |
