]> git.proxmox.com Git - mirror_edk2.git/blob - UnixPkg/Include/Common/UnixInclude.h
Update the copyright notice format
[mirror_edk2.git] / UnixPkg / Include / Common / UnixInclude.h
1 /*++
2
3 Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
4 Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 Module Name:
14 UnixInclude.h
15
16 Abstract:
17 Public include file for the Unix Library
18
19 --*/
20
21 #ifndef __UNIX_INCLUDE_H__
22 #define __UNIX_INCLUDE_H__
23 #include <sys/types.h>
24 #include <sys/stat.h>
25
26 #ifdef __APPLE__
27 #include <sys/param.h>
28 #include <sys/mount.h>
29 #else
30 #include <sys/vfs.h>
31 #endif
32
33 #include <sys/poll.h>
34 #include <dirent.h>
35 #include <errno.h>
36 #include <fcntl.h>
37 #include <time.h>
38 #include <utime.h>
39 #include <unistd.h>
40 #endif