Overview
Comment: | OFThread.m: Fix missing define for PSP |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a4986b3356e9a31bbb39c41cb70ea680 |
User & Date: | js on 2014-03-05 00:15:40 |
Other Links: | manifest | tags |
Context
2014-03-05
| ||
00:31 | Move netinet/in.h include to socket.h check-in: 4de1f2a67a user: js tags: trunk | |
00:15 | OFThread.m: Fix missing define for PSP check-in: a4986b3356 user: js tags: trunk | |
00:12 | Fix compilation for Wii check-in: 54a34ebd9c user: js tags: trunk | |
Changes
Modified src/OFThread.m from [b62a944b3a] to [0049adfd9b].
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #define OF_THREAD_M #define _POSIX_C_SOURCE 200112L #define __NO_EXT_QNX #include "config.h" #include <stdlib.h> #include <math.h> #include <time.h> | > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #define OF_THREAD_M #define _POSIX_C_SOURCE 200112L #define _POSIX_TIMERS #define __NO_EXT_QNX #include "config.h" #include <stdlib.h> #include <math.h> #include <time.h> |
︙ | ︙ |