mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 00:06:44 -04:00
parser-inc: C++ headers: cassert, cerrno, fstream, new, cstdlib, csetjmp
This commit is contained in:
parent
7790f8429d
commit
a76747cba5
1
dtool/src/parser-inc/cassert
Normal file
1
dtool/src/parser-inc/cassert
Normal file
@ -0,0 +1 @@
|
||||
#include <assert.h>
|
1
dtool/src/parser-inc/cerrno
Normal file
1
dtool/src/parser-inc/cerrno
Normal file
@ -0,0 +1 @@
|
||||
#include <errno.h>
|
5
dtool/src/parser-inc/csetjmp
Normal file
5
dtool/src/parser-inc/csetjmp
Normal file
@ -0,0 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
namespace std {
|
||||
typedef int jmp_buf[1];
|
||||
}
|
21
dtool/src/parser-inc/cstdlib
Normal file
21
dtool/src/parser-inc/cstdlib
Normal file
@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
namespace std {
|
||||
struct div_t {
|
||||
int quot, rem;
|
||||
};
|
||||
|
||||
struct ldiv_t {
|
||||
long quot, rem;
|
||||
};
|
||||
|
||||
struct lldiv_t {
|
||||
long long quot, rem;
|
||||
};
|
||||
|
||||
struct imaxdiv_t {
|
||||
long long quot, rem;
|
||||
};
|
||||
}
|
1
dtool/src/parser-inc/fstream
Normal file
1
dtool/src/parser-inc/fstream
Normal file
@ -0,0 +1 @@
|
||||
#include <iosfwd>
|
13
dtool/src/parser-inc/new
Normal file
13
dtool/src/parser-inc/new
Normal file
@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
namespace std {
|
||||
class bad_alloc;
|
||||
class bad_array_new_length;
|
||||
|
||||
struct nothrow_t {
|
||||
explicit nothrow_t() = default;
|
||||
};
|
||||
extern const nothrow_t nothrow;
|
||||
|
||||
using new_handler = void (*)();
|
||||
}
|
@ -1 +1,4 @@
|
||||
#include <stdtypedefs.h>
|
||||
|
||||
#define EXIT_SUCCESS 0
|
||||
#define EXIT_FAILURE 1
|
||||
|
Loading…
x
Reference in New Issue
Block a user