mhl and mhbuild ignore to long lines
[mmh] / sbr / snprintb.c
index 655831c..376d4b0 100644 (file)
 
 
 char *
-snprintb (char *buffer, size_t n, unsigned v, char *bits)
+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);
+       snprintf(buffer, n, bits && *bits == 010 ? "0%o" : "0x%x", v);
        bp = buffer + strlen(buffer);
 
        if (bits && *++bits) {