summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libcruft/__end_parse.c
blob: 6c36318b59f1f9c368a8d2b0078ea420e489180d (plain)
1
2
3
4
5
6
7
8
9
10
#include <sys/types.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
#include "parselib.h"

void __end_parse(struct state* s) {
  munmap((void*)(s->buffirst),s->buflen);
  s->buffirst=0;
}