aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2013-08-15 19:02:04 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-08-19 17:41:09 +0200
commit6f25b12e5e32876480e4965e3b61cffb3f7499e2 (patch)
treee01df2fd16c36d5d18f19a2d20e5212608bf281a
parent495615802f3671f1656d92a8712341a9b78d8dd1 (diff)
downloadmig-6f25b12e5e32876480e4965e3b61cffb3f7499e2.tar.gz
mig-6f25b12e5e32876480e4965e3b61cffb3f7499e2.tar.bz2
mig-6f25b12e5e32876480e4965e3b61cffb3f7499e2.zip
Remove unused file alloc.h
* alloc.h: Remove file. * Makefile (migcom_SOURCES): Remove alloc.h.
-rw-r--r--Makefile.am2
-rw-r--r--alloc.h34
2 files changed, 1 insertions, 35 deletions
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.Distribution@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