From 0eebcc9f00659b2edaf1d4110fdb7caaab55f870 Mon Sep 17 00:00:00 2001 From: Ivan Gotovchits Date: Tue, 16 Jun 2020 08:01:23 -0400 Subject: [PATCH] adds the missing toupper and tolower prototypes (#1132) --- plugins/api/api/c/posix.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/api/api/c/posix.h b/plugins/api/api/c/posix.h index 3744f1aae..19bf06f87 100644 --- a/plugins/api/api/c/posix.h +++ b/plugins/api/api/c/posix.h @@ -445,3 +445,6 @@ int isxdigit(int c); int isascii(int c); int isblank(int c); + +int toupper(int c); +int tolower(int c);