diff options
Diffstat (limited to 'contrib/cpio/src/dstring.c')
-rw-r--r-- | contrib/cpio/src/dstring.c | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/contrib/cpio/src/dstring.c b/contrib/cpio/src/dstring.c index e3cdae7..aefeab8 100644 --- a/contrib/cpio/src/dstring.c +++ b/contrib/cpio/src/dstring.c @@ -11,9 +11,10 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 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., - 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + 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., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301 USA. */ #if defined(HAVE_CONFIG_H) # include <config.h> @@ -27,13 +28,8 @@ #endif #include "dstring.h" -#if __STDC__ -# define P_(s) s -#else -# define P_(s) () -#endif -char *xmalloc P_((unsigned n)); -char *xrealloc P_((char *p, unsigned n)); +char *xmalloc (unsigned n); +char *xrealloc (char *p, unsigned n); /* Initialiaze dynamic string STRING with space for SIZE characters. */ |