X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstripslash.c;h=9c0ad3d62e0704a069f07e9a0c4f8a8d85ee8c96;hb=310f220f3dc11206e8c8374c2350d8e5f74c8427;hp=802204f25fda30b22259f685facde794e91adcae;hpb=d87c39464604e74f580c7fae835be31a4c125c36;p=gnulib.git diff --git a/lib/stripslash.c b/lib/stripslash.c index 802204f25..9c0ad3d62 100644 --- a/lib/stripslash.c +++ b/lib/stripslash.c @@ -12,13 +12,17 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#if defined(STDC_HEADERS) || defined(USG) -#include +#if HAVE_CONFIG_H +# include +#endif + +#if defined(STDC_HEADERS) || defined(HAVE_STRING_H) +# include #else -#include +# include #endif /* Remove trailing slashes from PATH. @@ -28,8 +32,7 @@ when given a path that ends in "/" (except for the root directory). */ void -strip_trailing_slashes (path) - char *path; +strip_trailing_slashes (char *path) { int last;