/** \file mmap.h \brief headers of functions for mapping files into memory */ #ifndef MMAP_H #define MMAP_H #include extern void *mmap_fd(int fd, off_t *len); extern void *mmap_name(const char *fname, off_t *len, int *fd); #endif