s/strup/my_strupr/
authorAssar Westerlund <assar@sics.se>
Fri, 1 May 1998 05:17:39 +0000 (05:17 +0000)
committerAssar Westerlund <assar@sics.se>
Fri, 1 May 1998 05:17:39 +0000 (05:17 +0000)
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4829 ec53bebd-3082-4978-b11e-865c3cabbd6b

include/bits.c

index f390717fe36bd01b44a881e066d709a98acc5f19..9dc35a7b4c233884a87d2de55f1a98cd467f5154 100644 (file)
@@ -46,7 +46,7 @@ RCSID("$Id$");
 #include <ctype.h>
 
 static void
-strupr(char *s)
+my_strupr(char *s)
 {
     char *p = s;
     while(*p){
@@ -66,7 +66,7 @@ strupr(char *s)
         int tabs;                                              \
        sprintf(tmp, "%sint%d_t" , pre, len);                   \
        sprintf(tmp2, "typedef %s %s;", #TYPE, tmp);            \
-       strupr(tmp);                                            \
+       my_strupr(tmp);                                         \
        tabs = 5 - strlen(tmp2) / 8;                            \
         fprintf(f, "%s", tmp2);                                        \
        while(tabs-- > 0) fprintf(f, "\t");                     \