diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2003-05-18 10:24:13 +0000 |
---|---|---|
committer | Andreas Gruenbacher <agruen@suse.de> | 2009-03-19 01:43:37 +0100 |
commit | 9e7fd8cb42a07d2b9c1a507e2d25eaf52adf3115 (patch) | |
tree | a761d2947ce49fdb98644359d42f0abb5fba3bc8 | |
parent | 529748febcad90b099bd4bfcb5c47de0e1c725ae (diff) | |
download | patch-9e7fd8cb42a07d2b9c1a507e2d25eaf52adf3115.tar.gz |
(FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now done by 'configure'. (PROGRAM_NAME): Remove; now done by 'configure' as PACKAGE_NAME.
-rw-r--r-- | common.h | 18 |
1 files changed, 3 insertions, 15 deletions
@@ -1,11 +1,11 @@ /* common definitions for `patch' */ -/* $Id: common.h,v 1.32 2002/05/28 07:12:03 eggert Exp $ */ +/* $Id: common.h,v 1.33 2003/05/18 08:24:13 eggert Exp $ */ /* Copyright (C) 1986, 1988 Larry Wall - Copyright (C) 1990, 1991, 1992, 1993, 1997, 1998, 1999, 2002 Free - Software Foundation, Inc. + Copyright (C) 1990, 1991, 1992, 1993, 1997, 1998, 1999, 2002, 2003 + 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 @@ -120,15 +120,6 @@ #endif -#ifndef FILESYSTEM_PREFIX_LEN -#define FILESYSTEM_PREFIX_LEN(f) 0 -#endif - -#ifndef ISSLASH -#define ISSLASH(c) ((c) == '/') -#endif - - /* constants */ /* AIX predefines these. */ @@ -316,6 +307,3 @@ void *realloc (); #ifndef TTY_DEVICE #define TTY_DEVICE "/dev/tty" #endif - -/* The official name of this program (e.g., no `g' prefix). */ -#define PROGRAM_NAME "patch" |