summaryrefslogtreecommitdiff
path: root/install.h
diff options
context:
space:
mode:
authorewt <devnull@localhost>1996-07-20 23:20:56 +0000
committerewt <devnull@localhost>1996-07-20 23:20:56 +0000
commitbf60ec455312e67724a00c9f1a00e5088c04c963 (patch)
treed0cd863d643d769b1fad510c9e1c0853b85ce76c /install.h
parent314715470b0c5bd62e9bdf3cc0970d0007f7bcd5 (diff)
downloadrpm-bf60ec455312e67724a00c9f1a00e5088c04c963.tar.gz
rpm-bf60ec455312e67724a00c9f1a00e5088c04c963.tar.bz2
rpm-bf60ec455312e67724a00c9f1a00e5088c04c963.zip
made printDepFlags() externally visible
CVS patchset: 910 CVS date: 1996/07/20 23:20:56
Diffstat (limited to 'install.h')
-rw-r--r--install.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/install.h b/install.h
index d50b7d76f..dcc83291a 100644
--- a/install.h
+++ b/install.h
@@ -1,6 +1,8 @@
#ifndef _H_INSTALL
#define _H_INSTALL
+#include <stdio.h>
+
#define RPMINSTALL_PERCENT (1 << 0)
#define RPMINSTALL_HASH (1 << 1)
#define RPMINSTALL_NODEPS (1 << 2)
@@ -12,6 +14,7 @@ int doInstall(char * rootdir, char ** argv, char * prefix, int installFlags,
int doSourceInstall(char * prefix, char * arg, char ** specFile);
int doUninstall(char * rootdir, char ** argv, int uninstallFlags,
int interfaceFlags);
+void printDepFlags(FILE * f, char * version, int flags);
#endif