Cygwin: strptime: add release note
[newlib-cygwin.git] / winsup / cygwin / local_includes / perprocess.h
blob78530894fbe83e75e1fa37ba707d0da9f3f9b1c3
1 /* per_process.h: main Cygwin header file.
3 This file is part of Cygwin.
5 This software is a copyrighted work licensed under the terms of the
6 Cygwin license. Please consult the file "CYGWIN_LICENSE" for
7 details. */
9 #include <sys/cygwin.h>
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
15 /* Pointer into application's static data */
16 extern struct per_process __cygwin_user_data;
17 #define user_data (&__cygwin_user_data)
19 /* We use the following to test that sizeof hasn't changed. When adding
20 or deleting members, insert fillers or use the reserved entries.
21 Do not change this value. */
22 #define SIZEOF_PER_PROCESS (41 * 8)
24 #ifdef __cplusplus
26 #endif