Remove SKIPSPACE, SKIPNONSPACE.
This commit is contained in:
parent
bdd3cd3ed6
commit
7d75c393a5
|
@ -14,8 +14,6 @@
|
|||
/* but this will be needed */
|
||||
#include "rpmspec.h"
|
||||
|
||||
#include "rpmio.h" /* for xisspace */
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
@ -39,9 +37,6 @@ typedef enum rpmBuildFlags_e {
|
|||
RPMBUILD_RMSPEC = (1 << 11) /*!< Remove spec file. */
|
||||
} rpmBuildFlags;
|
||||
|
||||
#define SKIPSPACE(s) { while (*(s) && xisspace(*(s))) (s)++; }
|
||||
#define SKIPNONSPACE(s) { while (*(s) && !xisspace(*(s))) (s)++; }
|
||||
|
||||
#define PART_SUBNAME 0
|
||||
#define PART_NAME 1
|
||||
|
||||
|
|
Loading…
Reference in New Issue