Makefile: Disallow undefined symbols.
[osl.git] / fd.h
1 /*
2  * Copyright (C) 2006-2008 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file fd.h exported symbols from fd.c */
8
9 int osl_open(const char *path, int flags, mode_t mode);
10 int para_opendir(const char *dirname, DIR **dir, int *cwd);
11 int para_mkdir(const char *path, mode_t mode);
12 int para_fchdir(int fd);
13 int mmap_full_file(const char *filename, int open_mode, void **map,
14         size_t *size, int *fd_ptr);
15 int para_munmap(void *start, size_t length);