From ad9db5af1af0576b1ac057e35917c08ece7411ba Mon Sep 17 00:00:00 2001 From: solar Date: Thu, 23 Dec 2010 06:16:56 +0000 Subject: [PATCH] Forgot parameter type. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@504 546481bc-9713-0410-bf18-d3337bbf4a3e --- includes/ctype.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.30.2