diff options
author | Oliver Kiddle <opk@zsh.org> | 2024-03-18 20:02:34 +0100 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2024-03-18 20:02:34 +0100 |
commit | 57248b88830ce56adc243a40c7773fb3825cab34 (patch) | |
tree | 3d16fe0c1751200e8efb9223665fdc80e755cff9 /Src/hist.c | |
parent | 25182cc2e69ab1cfeeb3f0faa1d28d774393043b (diff) | |
download | zsh-57248b88830ce56adc243a40c7773fb3825cab34.tar.gz zsh-57248b88830ce56adc243a40c7773fb3825cab34.zip |
52750: remove ansi2knr support for old pre-ansi K&R compilers
Diffstat (limited to 'Src/hist.c')
-rw-r--r-- | Src/hist.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Src/hist.c b/Src/hist.c index 448dfddbc..1a00c30ed 100644 --- a/Src/hist.c +++ b/Src/hist.c @@ -34,25 +34,25 @@ * word control. */ /**/ -mod_export int (*hgetc) _((void)); +mod_export int (*hgetc) (void); /**/ -void (*hungetc) _((int)); +void (*hungetc) (int); /**/ -void (*hwaddc) _((int)); +void (*hwaddc) (int); /**/ -void (*hwbegin) _((int)); +void (*hwbegin) (int); /**/ -void (*hwabort) _((void)); +void (*hwabort) (void); /**/ -void (*hwend) _((void)); +void (*hwend) (void); /**/ -void (*addtoline) _((int)); +void (*addtoline) (int); /* != 0 means history substitution is turned off */ |