X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fsave-cwd.c;h=292bb6809c71ffc571a5ef837677007e70200fd4;hb=3ec28ba4f3c84ef294f14c8a7cff3c9e934c4944;hp=8413502eee81faeb87f328fd71625b4fcb85930a;hpb=0b403bac52c59ec0c93f6a215902187fc207683b;p=gnulib.git diff --git a/lib/save-cwd.c b/lib/save-cwd.c index 8413502ee..292bb6809 100644 --- a/lib/save-cwd.c +++ b/lib/save-cwd.c @@ -1,5 +1,5 @@ /* save-cwd.c -- Save and restore current working directory. - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1997 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,10 +12,10 @@ 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 Jim Meyering . */ +/* Written by Jim Meyering . */ #ifdef HAVE_CONFIG_H # include "config.h" @@ -38,7 +38,7 @@ #endif #include -# ifndef errno +#ifndef errno extern int errno; #endif @@ -96,7 +96,7 @@ save_cwd (cwd) } # endif /* __sun__ || sun */ #else -#define fchdir(x) (abort (), 0) +# define fchdir(x) (abort (), 0) have_working_fchdir = 0; #endif } @@ -152,4 +152,3 @@ free_cwd (cwd) if (cwd->name) free (cwd->name); } -