Moved VFS syscall prototypes from vfs.h to syscalls.h.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8267 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-07-02 02:47:43 +00:00
parent cfa218268b
commit 54f1ea35c7
2 changed files with 6 additions and 12 deletions
+3 -5
View File
@@ -1,17 +1,15 @@
/* Operations on file descriptors
**
** Copyright 2002-2004, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
** Distributed under the terms of the Haiku License.
*/
#include <fd.h>
#include <OS.h>
#include <Errors.h>
#include <fd.h>
#include <vfs.h>
#include <debug.h>
#include <syscalls.h>
#include <malloc.h>
#include <string.h>
+3 -7
View File
@@ -4,7 +4,7 @@
/*
** Copyright 2002-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
** Distributed under the terms of the Haiku License.
**
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
** Distributed under the terms of the NewOS License.
@@ -16,18 +16,13 @@
#include <fs_interface.h>
#include <disk_device_manager/KDiskDeviceManager.h>
#include <kernel.h>
#include <syscalls.h>
#include <boot/kernel_args.h>
#include <vfs.h>
#include <vm.h>
#include <vm_cache.h>
#include <debug.h>
#include <khash.h>
#include <lock.h>
#include <thread.h>
#include <malloc.h>
#include <arch/cpu.h>
#include <elf.h>
#include <kerrors.h>
#include <fd.h>
#include <fs/node_monitor.h>
@@ -36,6 +31,7 @@
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/resource.h>
#include <fcntl.h>