X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fsavedir.c;h=f72086659802e02cb6ad2d3e4ee4e646278dc362;hb=c98e50278baa2c19aee3f16d13716f29ae41fdc6;hp=f4c0c12ce1a64bc8306ad1744c82ce27601a7f9c;hpb=6644be6d79d003e311110e743b4fa9019ef0c4b9;p=gnulib.git diff --git a/lib/savedir.c b/lib/savedir.c index f4c0c12ce..f72086659 100644 --- a/lib/savedir.c +++ b/lib/savedir.c @@ -1,5 +1,5 @@ /* savedir.c -- save the list of files in a directory in a string - Copyright (C) 1990, 1997 Free Software Foundation, Inc. + Copyright (C) 1990, 1997, 1998 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 @@ -17,13 +17,13 @@ /* Written by David MacKenzie . */ -#ifdef HAVE_CONFIG_H +#if HAVE_CONFIG_H # include #endif #include -#ifdef HAVE_UNISTD_H +#if HAVE_UNISTD_H # include #endif @@ -62,7 +62,9 @@ char *realloc (); # define NULL 0 #endif +#ifndef stpcpy char *stpcpy (); +#endif #include "savedir.h" @@ -74,9 +76,7 @@ char *stpcpy (); Return NULL if DIR cannot be opened or if out of memory. */ char * -savedir (dir, name_size) - const char *dir; - unsigned name_size; +savedir (const char *dir, unsigned int name_size) { DIR *dirp; struct dirent *dp;