1/**
2 * D header file for POSIX.
3 *
4 * Copyright: Copyright Sean Kelly 2005 - 2009.
5 * License:   $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
6 * Authors:   Sean Kelly
7 * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
8 */
9
10/*          Copyright Sean Kelly 2005 - 2009.
11 * Distributed under the Boost Software License, Version 1.0.
12 *    (See accompanying file LICENSE or copy at
13 *          http://www.boost.org/LICENSE_1_0.txt)
14 */
15module core.sys.posix.inttypes;
16
17import core.sys.posix.config;
18public import core.stdc.inttypes;
19
20version (Posix):
21extern (C) nothrow @nogc:
22@system:
23
24//
25// Required
26//
27/*
28intmax_t  imaxabs(intmax_t);
29imaxdiv_t imaxdiv(intmax_t, intmax_t);
30intmax_t  strtoimax(const scope char*, char**, int);
31uintmax_t strtoumax(const scope char*, char**, int);
32intmax_t  wcstoimax(const scope wchar_t*, wchar_t**, int);
33uintmax_t wcstoumax(const scope wchar_t*, wchar_t**, int);
34*/
35
36intmax_t  imaxabs(intmax_t);
37imaxdiv_t imaxdiv(intmax_t, intmax_t);
38intmax_t  strtoimax(const scope char*, char**, int);
39uintmax_t strtoumax(const scope char*, char**, int);
40intmax_t  wcstoimax(const scope wchar_t*, wchar_t**, int);
41uintmax_t wcstoumax(const scope wchar_t*, wchar_t**, int);
42