Overview
| Comment: | Add missing include. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
e5017153bb9f1fcdbe98ceccc7918fc2 |
| User & Date: | js on 2011-06-04 15:26:29 |
| Other Links: | manifest | tags |
Context
|
2011-06-04
| ||
| 15:40 | Add -[hash] to OFDate, as it is required if there's -[isEqual:]. (check-in: eee0aa1848 user: js tags: trunk) | |
| 15:26 | Add missing include. (check-in: e5017153bb user: js tags: trunk) | |
| 14:00 | Add -[isEqual:] to OFXMLElement and OFXMLAttribute. (check-in: cee604408e user: js tags: trunk) | |
Changes
Modified src/OFFile.m from [46fd6ac14d] to [e3972b8f3a].
| ︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #include <stdio.h> #include <string.h> #include <stdarg.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> | > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdarg.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> |
| ︙ | ︙ |