jcs's openbsd hax
openbsd
at jcs 16 lines 273 B view raw
1/* Public domain. */ 2 3#ifndef _LINUX_FILE_H 4#define _LINUX_FILE_H 5 6/* both for printf */ 7#include <sys/types.h> 8#include <sys/systm.h> 9 10void fd_install(int, struct file *); 11void fput(struct file *); 12 13int get_unused_fd_flags(unsigned int); 14void put_unused_fd(int); 15 16#endif