From: Bradley Nicholes Date: Fri, 10 Aug 2001 01:15:51 +0000 (+0000) Subject: Removed the parameter requirement on the _getch macro since getch X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa4638f7b07f429403414c1b42cbfa3283c4fc8c;p=thirdparty%2Fapache%2Fhttpd.git Removed the parameter requirement on the _getch macro since getch doesn't take a parameter. Patch submitted by Pavel Novy git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@90061 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/os/netware/os.h b/src/os/netware/os.h index cfd5e19a6e8..3ed87f312b6 100644 --- a/src/os/netware/os.h +++ b/src/os/netware/os.h @@ -122,7 +122,7 @@ typedef int gid_t; #define strcasecmp(s1, s2) stricmp(s1, s2) #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n) #define mktemp(s) tmpnam(s) -#define _getch(c) getch(c) +#define _getch getch #define opendir_411(p) os_opendir(p) #define opendir(p) os_opendir(p)