stagit
static git repository generator
git clone https://9o.is/git/stagit.git
commit b4f52a2528be154c037d78e1214bf21daa502cf2 parent b4c82cbdf40343c77793d519c291adcb4f2fae83 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Sun, 12 Mar 2017 19:49:14 +0100 simplify/shorten pledge stub Diffstat:
| M | stagit-index.c | | | 6 | +----- |
| M | stagit.c | | | 6 | +----- |
2 files changed, 2 insertions(+), 10 deletions(-)
diff --git a/stagit-index.c b/stagit-index.c @@ -22,11 +22,7 @@ static char *name = ""; static char owner[255]; #ifndef USE_PLEDGE -int -pledge(const char *promises, const char *paths[]) -{ - return 0; -} +#define pledge(p1,p2) 0 #endif void diff --git a/stagit.c b/stagit.c @@ -69,11 +69,7 @@ static FILE *rcachefp, *wcachefp; static const char *cachefile; #ifndef USE_PLEDGE -int -pledge(const char *promises, const char *paths[]) -{ - return 0; -} +#define pledge(p1,p2) 0 #endif void