comparison druntime/import/core/sys/posix/inttypes.d @ 1458:e0b2d67cfe7c

Added druntime (this should be removed once it works).
author Robert Clipsham <robert@octarineparrot.com>
date Tue, 02 Jun 2009 17:43:06 +0100
parents
children
comparison
equal deleted inserted replaced
1456:7b218ec1044f 1458:e0b2d67cfe7c
1 /**
2 * D header file for POSIX.
3 *
4 * Copyright: Copyright Sean Kelly 2005 - 2009.
5 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>.
6 * Authors: Sean Kelly
7 * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
8 *
9 * Copyright Sean Kelly 2005 - 2009.
10 * Distributed under the Boost Software License, Version 1.0.
11 * (See accompanying file LICENSE_1_0.txt or copy at
12 * http://www.boost.org/LICENSE_1_0.txt)
13 */
14 module core.sys.posix.inttypes;
15
16 private import core.sys.posix.config;
17 public import core.stdc.inttypes;
18
19 //
20 // Required
21 //
22 /*
23 intmax_t imaxabs(intmax_t);
24 imaxdiv_t imaxdiv(intmax_t, intmax_t);
25 intmax_t strtoimax(in char*, char**, int);
26 uintmax_t strtoumax(in char *, char**, int);
27 intmax_t wcstoimax(in wchar_t*, wchar_t**, int);
28 uintmax_t wcstoumax(in wchar_t*, wchar_t**, int);
29 */
30 intmax_t imaxabs(intmax_t);
31 imaxdiv_t imaxdiv(intmax_t, intmax_t);
32 intmax_t strtoimax(in char*, char**, int);
33 uintmax_t strtoumax(in char *, char**, int);
34 intmax_t wcstoimax(in wchar_t*, wchar_t**, int);
35 uintmax_t wcstoumax(in wchar_t*, wchar_t**, int);