Overview
| Comment: | Add missing #import to make GCC happy |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
260c9acb9635447bf3bd1ef706661535 |
| User & Date: | js on 2023-01-22 21:56:26 |
| Other Links: | manifest | tags |
Context
|
2023-01-22
| ||
| 22:43 | Support for setting extended attributes on Linux (check-in: a4c6c83384 user: js tags: trunk) | |
| 21:56 | Add missing #import to make GCC happy (check-in: 260c9acb96 user: js tags: trunk) | |
| 21:48 | Support for reading extended attributes on Linux (check-in: 565d2b3763 user: js tags: trunk) | |
Changes
Modified src/OFFileManager.m from [50ee140785] to [5adb6092f8].
| ︙ | |||
27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | + | # include <syslimits.h> #endif #ifdef OF_PSP # include <sys/syslimits.h> #endif #import "OFArray.h" #import "OFData.h" #import "OFDate.h" #import "OFDictionary.h" #ifdef OF_HAVE_FILES # import "OFFile.h" #endif #import "OFFileManager.h" #import "OFIRI.h" |
| ︙ |