1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00

filter through cppi

This commit is contained in:
Jim Meyering
1997-11-30 11:17:28 +00:00
parent 3f7e011ab0
commit e0da3d8d39

View File

@@ -1,5 +1,5 @@
#ifndef SAVE_CWD_H
#define SAVE_CWD_H 1
# define SAVE_CWD_H 1
struct saved_cwd
{
@@ -7,13 +7,13 @@ struct saved_cwd
char *name;
};
#ifndef __P
#if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
#define __P(args) args
#else
#define __P(args) ()
#endif /* GCC. */
#endif /* Not __P. */
# ifndef __P
# if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
# define __P(args) args
# else
# define __P(args) ()
# endif /* GCC. */
# endif /* Not __P. */
int save_cwd __P((struct saved_cwd *cwd));
int restore_cwd __P((const struct saved_cwd *cwd, const char *dest,