From b990bcf7bfa452efcc7e8fe625650fe01932ee49 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Fri, 1 May 1998 05:17:39 +0000 Subject: [PATCH] s/strup/my_strupr/ git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4829 ec53bebd-3082-4978-b11e-865c3cabbd6b --- include/bits.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/bits.c b/include/bits.c index f390717fe..9dc35a7b4 100644 --- a/include/bits.c +++ b/include/bits.c @@ -46,7 +46,7 @@ RCSID("$Id$"); #include 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"); \