X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fsavedir.c;h=5a9c339d8cf4ff3a6ad2e7257d7c8ebc95b0e5bb;hb=12cc8b970806cca3260e499c74d2f001df705a60;hp=1992cf55bffa11024cd2026b42f52d6d9f9b2072;hpb=2516905b58eead5c5285af06e09d350343b9f5fb;p=gnulib.git diff --git a/lib/savedir.c b/lib/savedir.c index 1992cf55b..5a9c339d8 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 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 @@ -12,19 +12,19 @@ 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. */ /* Written by David MacKenzie . */ -#ifdef HAVE_CONFIG_H -#include +#if HAVE_CONFIG_H +# include #endif #include -#ifdef HAVE_UNISTD_H -#include +#if HAVE_UNISTD_H +# include #endif #if HAVE_DIRENT_H @@ -46,23 +46,27 @@ #ifdef CLOSEDIR_VOID /* Fake a return value. */ -#define CLOSEDIR(d) (closedir (d), 0) +# define CLOSEDIR(d) (closedir (d), 0) #else -#define CLOSEDIR(d) closedir (d) +# define CLOSEDIR(d) closedir (d) #endif #ifdef STDC_HEADERS -#include -#include +# include +# include #else char *malloc (); char *realloc (); #endif #ifndef NULL -#define NULL 0 +# define NULL 0 #endif +#ifndef stpcpy char *stpcpy (); +#endif + +#include "savedir.h" /* Return a freshly allocated string containing the filenames in directory DIR, separated by '\0' characters; @@ -73,8 +77,8 @@ char *stpcpy (); char * savedir (dir, name_size) - char *dir; - unsigned name_size; + const char *dir; + unsigned int name_size; { DIR *dirp; struct dirent *dp;