]> git.marmaro.de Git - mmh/blobdiff - sbr/snprintb.c
No need to define the month and day names a second time
[mmh] / sbr / snprintb.c
index ce7bf8acda74f77f7efc3ef1ea379a5ecdf594ae..376d4b05c4d84fed0560aa4de1bf84ecfaa1359b 100644 (file)
@@ -12,8 +12,8 @@
 char *
 snprintb(char *buffer, size_t n, unsigned v, char *bits)
 {
-       register int i, j;
-       register char c, *bp;
+       int i, j;
+       char c, *bp;
 
        snprintf(buffer, n, bits && *bits == 010 ? "0%o" : "0x%x", v);
        bp = buffer + strlen(buffer);