*** empty log message ***
authorroot <devnull@localhost>
Fri, 7 Jun 1996 18:29:21 +0000 (18:29 +0000)
committerroot <devnull@localhost>
Fri, 7 Jun 1996 18:29:21 +0000 (18:29 +0000)
CVS patchset: 616
CVS date: 1996/06/07 18:29:21

build/myftw.h
build/pack.h
build/spec.h

index 061feb9..d6f075b 100644 (file)
@@ -1,3 +1,8 @@
 /* myftw.h -- ftw() using lstat() instead of stat() */
 
+#ifndef _MYFTW_H_
+#define _MYFTW_H_
+
 int myftw (const char *dir, __ftw_func_t func, int descriptors);
+
+#endif _MYFTW_H_
index 71f39a9..69ca504 100644 (file)
@@ -1,11 +1,11 @@
+/* pack.h -- final packing steps */
+
 #ifndef _PACK_H_
 #define _PACK_H_
 
 #include "spec.h"
 
-void markBuildTime(void);
 int packageBinaries(Spec s, char *passPhrase);
 int packageSource(Spec s, char *passPhrase);
-int doRmSource(Spec s);
 
 #endif _PACK_H_
index 637da54..ad5f4e4 100644 (file)
@@ -3,8 +3,10 @@
  * spec.h - routines for parsing are looking up info in a spec file
  */
 
-#ifndef _spec_h
-#define _spec_h
+#ifndef _SPEC_H_
+#define _SPEC_H_
+
+#include <stdio.h>
 
 typedef struct SpecRec *Spec;
 
@@ -18,4 +20,4 @@ char *getFullSource(Spec s, int ispatch, int num);
 
 int verifySpec(Spec s);
 
-#endif _spec_h
+#endif _SPEC_H_