From 339b9c0781cca7afb0964c6a655cda8ad9cf9fc2 Mon Sep 17 00:00:00 2001 From: Herbert Xu Date: Mon, 29 Sep 2014 17:05:53 +0800 Subject: [INPUT] Kill pgetc_macro pgetc_macro is identical to pgetc except that it's a macro and pgetc isn't. Since there is very little performance difference on modern systems it's time to kill pgetc_macro. Signed-off-by: Herbert Xu --- src/input.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/input.h') diff --git a/src/input.h b/src/input.h index 50a7797..775291b 100644 --- a/src/input.h +++ b/src/input.h @@ -61,6 +61,3 @@ void setinputstring(char *); void popfile(void); void popallfiles(void); void closescript(void); - -#define pgetc_macro() \ - (--parsenleft >= 0 ? (signed char)*parsenextc++ : preadbuffer()) -- cgit 1.4.1