get errno from <errno.h>
[unix-history] / usr / src / usr.bin / make / make.c
index b405a9d..eccf3bd 100644 (file)
@@ -1,20 +1,24 @@
+/*
+ * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
+ * Copyright (c) 1988, 1989 by Adam de Boor
+ * Copyright (c) 1989 by Berkeley Softworks
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Adam de Boor.
+ *
+ * %sccs.include.redist.c%
+ */
+
+#ifndef lint
+static char sccsid[] = "@(#)make.c     5.3 (Berkeley) %G%";
+#endif /* not lint */
+
 /*-
  * make.c --
  *     The functions which perform the examination of targets and
  *     their suitability for creation
  *
 /*-
  * make.c --
  *     The functions which perform the examination of targets and
  *     their suitability for creation
  *
- * Copyright (c) 1988, 1989 by the Regents of the University of California
- * Copyright (c) 1988, 1989 by Adam de Boor
- * Copyright (c) 1989 by Berkeley Softworks
- *
- * Permission to use, copy, modify, and distribute this
- * software and its documentation for any non-commercial purpose
- * and without fee is hereby granted, provided that the above copyright
- * notice appears in all copies.  The University of California,
- * Berkeley Softworks and Adam de Boor make no representations about
- * the suitability of this software for any purpose.  It is provided
- * "as is" without express or implied warranty.
- *
  * Interface:
  *     Make_Run                Initialize things for the module and recreate
  *                             whatever needs recreating. Returns TRUE if
  * Interface:
  *     Make_Run                Initialize things for the module and recreate
  *                             whatever needs recreating. Returns TRUE if
@@ -41,9 +45,6 @@
  *     Make_HandleUse          See if a child is a .USE node for a parent
  *                             and perform the .USE actions if so.
  */
  *     Make_HandleUse          See if a child is a .USE node for a parent
  *                             and perform the .USE actions if so.
  */
-#ifndef lint
-static char     *rcsid = "$Id: make.c,v 1.59 89/11/14 13:44:05 adam Exp $ SPRITE (Berkeley)";
-#endif lint
 
 #include    "make.h"
 
 
 #include    "make.h"