~ubuntu-branches/ubuntu/utopic/xen/utopic

« back to all changes in this revision

Viewing changes to extras/mini-os/include/posix/unistd.h

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2010-05-06 15:47:38 UTC
  • mto: (1.3.1) (15.1.1 sid) (4.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20100506154738-agoz0rlafrh1fnq7
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _POSIX_UNISTD_H
 
2
#define _POSIX_UNISTD_H
 
3
 
 
4
#include_next <unistd.h>
 
5
 
 
6
uid_t getuid(void);
 
7
uid_t geteuid(void);
 
8
gid_t getgid(void);
 
9
gid_t getegid(void);
 
10
int gethostname(char *name, size_t namelen);
 
11
size_t getpagesize(void);
 
12
int ftruncate(int fd, off_t length);
 
13
int lockf(int fd, int cmd, off_t len);
 
14
int nice(int inc);
 
15
 
 
16
#endif /* _POSIX_UNISTD_H */