From 9e85f4bd927630a47901b801ad8a70bbb271111e Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Wed, 15 Feb 2023 19:39:01 +0200 Subject: [PATCH] Remove obsolete C prototypes --- src/unroff.h | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/unroff.h b/src/unroff.h index b5eb7e1..ee2e1c5 100644 --- a/src/unroff.h +++ b/src/unroff.h @@ -13,28 +13,8 @@ #include -/* Include files that may be required by gcc although they shouldn't: - */ -#include - - -/* Prototypes that may be required by cc/gcc although they shouldn't: - */ -extern time_t time(time_t *); -extern size_t strftime(char *, size_t, const char *, const struct tm *); -extern long strtol(const char *s, char **endp, int base); -extern double strtod(const char *s, char **endp); -extern int pclose(FILE *); -extern int system(const char *); - - #include -/* Prototypes that were missing from "scheme.h" in some Elk releases: - */ -extern void Elk_Init(int ac, char **av, int call_inits, char *filename); -extern void Load_Source_Port(Object); - /* Used for passing a `char' to a function that takes an `int' argument, * such as isspace(). Maybe I should have used `unsigned char' rather