summaryrefslogtreecommitdiff
path: root/build/parseReqs.c
diff options
context:
space:
mode:
Diffstat (limited to 'build/parseReqs.c')
-rw-r--r--build/parseReqs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/parseReqs.c b/build/parseReqs.c
index 225c7a679..1c760c2a9 100644
--- a/build/parseReqs.c
+++ b/build/parseReqs.c
@@ -8,6 +8,8 @@
#include "rpmbuild.h"
#include "debug.h"
+/**
+ */
static struct ReqComp {
char *token;
int sense;
@@ -29,7 +31,6 @@ static struct ReqComp {
#define SKIPWHITE(_x) {while(*(_x) && (isspace(*_x) || *(_x) == ',')) (_x)++;}
#define SKIPNONWHITE(_x){while(*(_x) &&!(isspace(*_x) || *(_x) == ',')) (_x)++;}
-/** */
int parseRCPOT(Spec spec, Package pkg, const char *field, int tag,
int index, int tagflags)
{