* alloc.h: Remove file. * Makefile (migcom_SOURCES): Remove alloc.h. --- Makefile.am | 2 +- alloc.h | 34 ---------------------------------- 2 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 alloc.h
diff --git a/Makefile.am b/Makefile.am index a28fa3e..484e183 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,7 +11,7 @@ AWK_V = $(AWK_V_$(V)) AWK_V_ = $(AWK_V_$(AM_DEFAULT_VERBOSITY)) AWK_V_0 = @echo " AWK $@"; -migcom_SOURCES = alloc.h boolean.h error.c error.h global.c global.h \ +migcom_SOURCES = boolean.h error.c error.h global.c global.h \ header.c lexxer.h lexxer.l message.h mig_string.h \ migcom.c parser.h parser.y routine.c routine.h \ server.c statement.c statement.h string.c \ diff --git a/alloc.h b/alloc.h deleted file mode 100644 index 1d0b88f..0000000 --- a/alloc.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Mach Operating System - * Copyright (c) 1991,1990 Carnegie Mellon University - * All Rights Reserved. - * - * Permission to use, copy, modify and distribute this software and its - * documentation is hereby granted, provided that both the copyright - * notice and this permission notice appear in all copies of the - * software, derivative works or modified versions, and any portions - * thereof, and that both notices appear in supporting documentation. - * - * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS - * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR - * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. - * - * Carnegie Mellon requests users of this software to return to - * - * Software Distribution Coordinator or software.distribut...@cs.cmu.edu - * School of Computer Science - * Carnegie Mellon University - * Pittsburgh PA 15213-3890 - * - * any improvements or extensions that they make and grant Carnegie the - * rights to redistribute these changes. - */ - -#ifndef _ALLOC_H -#define _ALLOC_H - -extern char *malloc(); -extern char *calloc(); -extern void free(); - -#endif _ALLOC_H -- 1.7.10.4