Use spaces for indentation, not tabs.
[gnulib.git] / lib / xprintf.h
index d11e270..a26157d 100644 (file)
@@ -23,7 +23,7 @@
 #ifndef __attribute__
 /* This feature is available in gcc versions 2.5 and later.  */
 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
-#  define __attribute__(Spec)  /* empty */
+#  define __attribute__(Spec)   /* empty */
 # endif
 /* The __-protected variants of `format' and `printf' attributes
    are accepted by gcc versions 2.6.4 (effectively 2.7) and later.  */
@@ -40,7 +40,7 @@ extern int xvprintf (char const *restrict format, va_list args)
 extern int xfprintf (FILE *restrict stream, char const *restrict format, ...)
   __attribute__ ((__format__ (__printf__, 2, 3)));
 extern int xvfprintf (FILE *restrict stream, char const *restrict format,
-                     va_list args)
+                      va_list args)
   __attribute__ ((__format__ (__printf__, 2, 0)));
 
 #endif