From 2475c932b77bf10b1398008b7a60665b9eb28b0b Mon Sep 17 00:00:00 2001 From: Paulo Cesar Pereira de Andrade Date: Sun, 16 Mar 2008 19:25:32 -0300 Subject: [PATCH] Compile warning fixes. Ansify some functions in utils.c. --- utils.c | 39 +++++++++++---------------------------- 1 files changed, 11 insertions(+), 28 deletions(-) diff --git a/utils.c b/utils.c index 4c81e3f..61d8a7e 100644 --- a/utils.c +++ b/utils.c @@ -35,8 +35,7 @@ /***====================================================================***/ Opaque -uAlloc(size) - unsigned size; +uAlloc(unsigned size) { return((Opaque)malloc(size)); } @@ -44,9 +43,7 @@ uAlloc(size) /***====================================================================***/ Opaque -uCalloc(n,size) - unsigned n; - unsigned size; +uCalloc(unsigned n, unsigned size) { return((Opaque)calloc(n,size)); } @@ -54,9 +51,7 @@ uCalloc(n,size) /***====================================================================***/ Opaque -uRealloc(old,newSize) - Opaque old; - unsigned newSize; +uRealloc(Opaque old, unsigned newSize) { if (old==NULL) return((Opaque)malloc(newSize)); @@ -66,11 +61,7 @@ uRealloc(old,newSize) /***====================================================================***/ Opaque -uRecalloc(old,nOld,nNew,itemSize) - Opaque old; - unsigned nOld; - unsigned nNew; - unsigned itemSize; +uRecalloc(Opaque old, unsigned nOld, unsigned nNew, unsigned itemSize) { char *rtrn; @@ -88,8 +79,7 @@ char *rtrn; /***====================================================================***/ void -uFree(ptr) - Opaque ptr; +uFree(Opaque ptr) { if (ptr!=(Opaque)NULL) free((char *)ptr); @@ -104,8 +94,7 @@ static FILE *entryFile= NULL; int uEntryLevel; Boolean -uSetEntryFile(name) - char *name; +uSetEntryFile(char *name) { if ((entryFile!=NULL)&&(entryFile!=stderr)) { fprintf(entryFile,"switching to %s\n",name?name:"stderr"); @@ -137,9 +126,7 @@ va_list ap; } void -uExit(l,rtVal) - int l; - char * rtVal; +uExit(int l, char *rtVal) { int i; @@ -161,8 +148,7 @@ int i; int uDebugIndentSize= 4; Boolean -uSetDebugFile(name) - char *name; +uSetDebugFile(char *name) { if ((uDebugFile!=NULL)&&(uDebugFile!=stderr)) { fprintf(uDebugFile,"switching to %s\n",name?name:"stderr"); @@ -318,8 +304,7 @@ uInternalError(char *s,...) #ifndef HAVE_STRDUP char * -uStringDup(str) - char *str; +uStringDup(char *str) { char *rtrn; @@ -333,8 +318,7 @@ char *rtrn; #ifndef HAVE_STRCASECMP int -uStrCaseCmp(str1, str2) - char *str1, *str2; +uStrCaseCmp(char *str1, char *str2) { char buf1[512],buf2[512]; char c, *s; @@ -360,8 +344,7 @@ uStrCaseCmp(str1, str2) } int -uStrCasePrefix(prefix, str) - char *prefix, *str; +uStrCasePrefix(char *prefix, char *str) { char c1; char c2; -- 1.5.3.2