summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm/include/linux/file.h
blob: 69c80d7161afee13554fd50f6dcc79440774df65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Public domain. */

#ifndef _LINUX_FILE_H
#define _LINUX_FILE_H

/* both for printf */
#include <sys/types.h> 
#include <sys/systm.h>

#define fput(a)
#define fd_install(a, b)
#define put_unused_fd(a)

static inline int
get_unused_fd_flags(unsigned int flags)
{
	printf("%s: stub\n", __func__);
	return -1;
}

#endif