From: solar Date: Thu, 23 Dec 2010 06:16:56 +0000 (+0000) Subject: Forgot parameter type. X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=a441890ee6e346603bf5aeeb8a9694980118319f;hp=0fa6394bc70eab55e0e38703a31a3072232c0729 Forgot parameter type. --- diff --git a/includes/ctype.h b/includes/ctype.h index a4ac534..adf5ce2 100644 --- a/includes/ctype.h +++ b/includes/ctype.h @@ -83,11 +83,11 @@ int isxdigit( int c ); /* Converts an uppercase letter to a corresponding lowercase letter. Input that is not an uppercase letter remains unchanged. */ -int tolower( c ); +int tolower( int c ); /* Converts a lowercase letter to a corresponding uppercase letter. Input that is not a lowercase letter remains unchanged. */ -int toupper( c ); +int toupper( int c ); #endif