diff options
author | ewt <devnull@localhost> | 1996-07-20 23:20:56 +0000 |
---|---|---|
committer | ewt <devnull@localhost> | 1996-07-20 23:20:56 +0000 |
commit | bf60ec455312e67724a00c9f1a00e5088c04c963 (patch) | |
tree | d0cd863d643d769b1fad510c9e1c0853b85ce76c /install.h | |
parent | 314715470b0c5bd62e9bdf3cc0970d0007f7bcd5 (diff) | |
download | rpm-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.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |