From: Bruno Haible Date: Fri, 9 Mar 2007 00:33:15 +0000 (+0000) Subject: Convert tabs in the middle of preprocessor directives. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8fac1a69d412597a6c3aee234ae4f265250b34d8;p=pspp Convert tabs in the middle of preprocessor directives. --- diff --git a/ChangeLog b/ChangeLog index b533cd1893..f8b6a7bcb4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2007-03-08 Bruno Haible + + * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces. + * lib/getopt_.h: Likewise. + * lib/mbswidth.h: Likewise. + * lib/setenv.h: Likewise. + * lib/vasnprintf.h: Likewise. + * lib/vasprintf.h: Likewise. + * lib/verror.h: Likewise. + * lib/xsetenv.h: Likewise. + * lib/xvasprintf.h: Likewise. + 2007-03-08 Jim Meyering * users.txt: Add parted. diff --git a/lib/fnmatch_.h b/lib/fnmatch_.h index c406aef4d5..b086b45aac 100644 --- a/lib/fnmatch_.h +++ b/lib/fnmatch_.h @@ -1,5 +1,5 @@ /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003, - 2005 Free Software Foundation, Inc. + 2005, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -20,7 +20,7 @@ #ifndef _FNMATCH_H #define _FNMATCH_H 1 -#ifdef __cplusplus +#ifdef __cplusplus extern "C" { #endif @@ -58,7 +58,7 @@ extern "C" { extern int fnmatch (const char *__pattern, const char *__name, int __flags); -#ifdef __cplusplus +#ifdef __cplusplus } #endif diff --git a/lib/getopt_.h b/lib/getopt_.h index 27fce3dc79..615ef9a3b6 100644 --- a/lib/getopt_.h +++ b/lib/getopt_.h @@ -1,5 +1,5 @@ /* Declarations for getopt. - Copyright (C) 1989-1994,1996-1999,2001,2003,2004,2005,2006 + Copyright (C) 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -101,7 +101,7 @@ # endif #endif -#ifdef __cplusplus +#ifdef __cplusplus extern "C" { #endif @@ -216,7 +216,7 @@ extern int getopt_long_only (int ___argc, char *__getopt_argv_const *___argv, #endif -#ifdef __cplusplus +#ifdef __cplusplus } #endif diff --git a/lib/mbswidth.h b/lib/mbswidth.h index 1935e0a2dc..eec4ff6c5e 100644 --- a/lib/mbswidth.h +++ b/lib/mbswidth.h @@ -1,5 +1,5 @@ /* Determine the number of screen columns needed for a string. - Copyright (C) 2000-2004 Free Software Foundation, Inc. + Copyright (C) 2000-2004, 2007 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -30,7 +30,7 @@ #endif -#ifdef __cplusplus +#ifdef __cplusplus extern "C" { #endif @@ -56,6 +56,6 @@ extern int mbswidth (const char *string, int flags); extern int mbsnwidth (const char *buf, size_t nbytes, int flags); -#ifdef __cplusplus +#ifdef __cplusplus } #endif diff --git a/lib/setenv.h b/lib/setenv.h index c89e7da4d3..92e7bbaf7f 100644 --- a/lib/setenv.h +++ b/lib/setenv.h @@ -1,5 +1,5 @@ /* Setting environment variables. - Copyright (C) 2001-2004 Free Software Foundation, Inc. + Copyright (C) 2001-2004, 2007 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ #endif -#ifdef __cplusplus +#ifdef __cplusplus extern "C" { #endif @@ -49,6 +49,6 @@ extern int unsetenv (const char *name); #endif -#ifdef __cplusplus +#ifdef __cplusplus } #endif diff --git a/lib/vasnprintf.h b/lib/vasnprintf.h index 393a7c801b..7a0c01f4bf 100644 --- a/lib/vasnprintf.h +++ b/lib/vasnprintf.h @@ -37,7 +37,7 @@ # endif #endif -#ifdef __cplusplus +#ifdef __cplusplus extern "C" { #endif @@ -74,7 +74,7 @@ extern char * asnprintf (char *resultbuf, size_t *lengthp, const char *format, . extern char * vasnprintf (char *resultbuf, size_t *lengthp, const char *format, va_list args) __attribute__ ((__format__ (__printf__, 3, 0))); -#ifdef __cplusplus +#ifdef __cplusplus } #endif diff --git a/lib/vasprintf.h b/lib/vasprintf.h index cf155c165c..65f05315fe 100644 --- a/lib/vasprintf.h +++ b/lib/vasprintf.h @@ -43,7 +43,7 @@ # endif #endif -#ifdef __cplusplus +#ifdef __cplusplus extern "C" { #endif @@ -60,7 +60,7 @@ extern int asprintf (char **result, const char *format, ...) extern int vasprintf (char **result, const char *format, va_list args) __attribute__ ((__format__ (__printf__, 2, 0))); -#ifdef __cplusplus +#ifdef __cplusplus } #endif diff --git a/lib/verror.h b/lib/verror.h index 625ef102ee..d3bbcbec13 100644 --- a/lib/verror.h +++ b/lib/verror.h @@ -1,5 +1,5 @@ /* Declaration for va_list error-reporting function - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006-2007 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,7 +21,7 @@ #include "error.h" #include -#ifdef __cplusplus +#ifdef __cplusplus extern "C" { #endif @@ -47,7 +47,7 @@ extern void verror_at_line (int __status, int __errnum, const char *__fname, va_list __args) __attribute__ ((__format__ (__printf__, 5, 0))); -#ifdef __cplusplus +#ifdef __cplusplus } #endif diff --git a/lib/xsetenv.h b/lib/xsetenv.h index f90d069f2e..9d1df813df 100644 --- a/lib/xsetenv.h +++ b/lib/xsetenv.h @@ -1,5 +1,5 @@ /* Setting environment variables, with out-of-memory checking. - Copyright (C) 2001-2002 Free Software Foundation, Inc. + Copyright (C) 2001-2002, 2007 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,7 +18,7 @@ /* Get unsetenv(). It can be used without error checking. */ #include "setenv.h" -#ifdef __cplusplus +#ifdef __cplusplus extern "C" { #endif @@ -27,6 +27,6 @@ extern "C" { With error checking. */ extern void xsetenv (const char *name, const char *value, int replace); -#ifdef __cplusplus +#ifdef __cplusplus } #endif diff --git a/lib/xvasprintf.h b/lib/xvasprintf.h index de55a9f0c8..70c6230de5 100644 --- a/lib/xvasprintf.h +++ b/lib/xvasprintf.h @@ -1,5 +1,5 @@ /* vasprintf and asprintf with out-of-memory checking. - Copyright (C) 2002-2004, 2006 Free Software Foundation, Inc. + Copyright (C) 2002-2004, 2006-2007 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -34,7 +34,7 @@ # endif #endif -#ifdef __cplusplus +#ifdef __cplusplus extern "C" { #endif @@ -50,7 +50,7 @@ extern char *xasprintf (const char *format, ...) extern char *xvasprintf (const char *format, va_list args) __attribute__ ((__format__ (__printf__, 1, 0))); -#ifdef __cplusplus +#ifdef __cplusplus } #endif