summaryrefslogtreecommitdiff
path: root/src/util/map.h
blob: 232720f70b4661d09dfe0123d9e802b632ad27bc (plain)
1
2
3
4
5
6
7
8
9
10
#include <sys/stat.h>

struct map {
  char *addr;
  struct stat sb;
  int fd;
};

struct map *open_map(const char *fname);
void close_map(struct map *m);