From 3d692f50d5cbb83eb0f0787bee20c5c49ef42050 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 11 Dec 2003 06:06:01 +0000 Subject: [PATCH] * getdelim.c, alloca.c: common.h is no longer, but alloc.h declares the allocation functions. --- lib/misc/ChangeLog | 5 +++++ lib/misc/alloca.c | 1 - lib/misc/getdelim.c | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/misc/ChangeLog b/lib/misc/ChangeLog index 9bcae51a..fac0657b 100644 --- a/lib/misc/ChangeLog +++ b/lib/misc/ChangeLog @@ -1,3 +1,8 @@ +Wed Dec 10 21:59:16 2003 Ben Pfaff + + * getdelim.c, alloca.c: common.h is no longer, but alloc.h + declares the allocation functions. + Sun Jan 2 21:35:47 2000 Ben Pfaff * qsort.c: Change headers. Fix __attribute__ for gcc 2.7.2. diff --git a/lib/misc/alloca.c b/lib/misc/alloca.c index be1f0c42..6d12bd0e 100644 --- a/lib/misc/alloca.c +++ b/lib/misc/alloca.c @@ -33,7 +33,6 @@ #include #include -#include "common.h" typedef void *pointer; /* generic pointer type */ #define NULL 0 /* null pointer constant */ diff --git a/lib/misc/getdelim.c b/lib/misc/getdelim.c index 3e74f947..8e1c1dd5 100644 --- a/lib/misc/getdelim.c +++ b/lib/misc/getdelim.c @@ -21,7 +21,7 @@ #include #include #include -#include "common.h" +#include "alloc.h" /* Reads a DELIMITER-separated field of any length from file STREAM. *LINEPTR is a malloc'd string of size N; if *LINEPTR is NULL, it is -- 2.30.2