6 #include <rpm/rpmutil.h>
8 /* "normalized" exit: avoid overflowing and xargs special value 255 */
9 #define RETVAL(rc) (((rc) > 254) ? 254 : (rc))
12 void argerror(const char * desc);
14 void printUsage(poptContext con, FILE * fp, int flags);
20 #endif /* _CLIUTIL_H */