Remove SKIPSPACE, SKIPNONSPACE.
authorRalf Corsépius <corsepiu@fedoraproject.org>
Mon, 29 Oct 2007 11:22:59 +0000 (12:22 +0100)
committerRalf Corsépius <corsepiu@fedoraproject.org>
Mon, 29 Oct 2007 11:22:59 +0000 (12:22 +0100)
build/rpmbuild.h

index adaf11d..8abdc50 100644 (file)
@@ -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