VirtualBox

source: vbox/trunk/include/iprt/nocrt/unistd.h@ 96037

Last change on this file since 96037 was 96018, checked in by vboxsync, 3 years ago

iprt/nocrt: Simple unistd.h replacement. bugref:10261

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
Line 
1/** @file
2 * IPRT / No-CRT - Minimal unistd.h header.
3 */
4
5/*
6 * Copyright (C) 2022 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef IPRT_INCLUDED_nocrt_unistd_h
27#define IPRT_INCLUDED_nocrt_unistd_h
28#ifndef RT_WITHOUT_PRAGMA_ONCE
29# pragma once
30#endif
31
32#include <iprt/nocrt/sys/types.h>
33
34
35#ifdef IPRT_NO_CRT_FOR_3RD_PARTY
36
37int RT_NOCRT(access)(const char *, int) RT_NOEXCEPT;
38int RT_NOCRT(dup)(int) RT_NOEXCEPT;
39int RT_NOCRT(dup2)(int, int) RT_NOEXCEPT;
40ssize_t RT_NOCRT(read)(int, void *, size_t) RT_NOEXCEPT;
41ssize_t RT_NOCRT(write)(int, const void *, size_t) RT_NOEXCEPT;
42int RT_NOCRT(close)(int) RT_NOEXCEPT;
43int RT_NOCRT(isatty)(int) RT_NOEXCEPT;
44RTPROCESS RT_NOCRT(getpid)(void) RT_NOEXCEPT;
45RTPROCESS RT_NOCRT(getppid)(void) RT_NOEXCEPT;
46int RT_NOCRT(unlink)(const char *) RT_NOEXCEPT;
47
48int RT_NOCRT(_access)(const char *, int) RT_NOEXCEPT;
49int RT_NOCRT(_dup)(int) RT_NOEXCEPT;
50int RT_NOCRT(_dup2)(int, int) RT_NOEXCEPT;
51ssize_t RT_NOCRT(_read)(int, void *, size_t) RT_NOEXCEPT;
52ssize_t RT_NOCRT(_write)(int, const void *, size_t) RT_NOEXCEPT;
53int RT_NOCRT(_close)(int) RT_NOEXCEPT;
54int RT_NOCRT(_isatty)(int) RT_NOEXCEPT;
55RTPROCESS RT_NOCRT(_getpid)(void) RT_NOEXCEPT;
56RTPROCESS RT_NOCRT(_getppid)(void) RT_NOEXCEPT;
57int RT_NOCRT(_unlink)(const char *) RT_NOEXCEPT;
58
59# if !defined(RT_WITHOUT_NOCRT_WRAPPERS) && !defined(RT_WITHOUT_NOCRT_WRAPPER_ALIASES)
60# define access RT_NOCRT(access)
61# define dup RT_NOCRT(dup)
62# define dup2 RT_NOCRT(dup2)
63# define read RT_NOCRT(read)
64# define write RT_NOCRT(write)
65# define close RT_NOCRT(close)
66# define isatty RT_NOCRT(isatty)
67# define getpid RT_NOCRT(getpid)
68# define getppid RT_NOCRT(getppid)
69# define unlink RT_NOCRT(unlink)
70
71# define _access RT_NOCRT(access)
72# define _dup RT_NOCRT(dup)
73# define _dup2 RT_NOCRT(dup2)
74# define _read RT_NOCRT(read)
75# define _write RT_NOCRT(write)
76# define _close RT_NOCRT(close)
77# define _isatty RT_NOCRT(isatty)
78# define _getpid RT_NOCRT(getpid)
79# define _getppid RT_NOCRT(getppid)
80# define _unlink RT_NOCRT(unlink)
81# endif
82
83#endif /* IPRT_NO_CRT_FOR_3RD_PARTY */
84
85
86#endif /* !IPRT_INCLUDED_nocrt_unistd_h */
87
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette