Overview
| Comment: | Work around glibc weirdness. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
41af19cfbc130677ec13962c289cf351 |
| User & Date: | js on 2011-01-31 23:15:58 |
| Other Links: | manifest | tags |
Context
|
2011-02-01
| ||
| 14:27 | Add of_log for easy logging to stderr. (check-in: 17338ef1d5 user: js tags: trunk) | |
|
2011-01-31
| ||
| 23:15 | Work around glibc weirdness. (check-in: 41af19cfbc user: js tags: trunk) | |
| 22:35 | wint_t might be smaller than int so that integer promotions apply. (check-in: f17bdd0722 user: js tags: trunk) | |
Changes
Modified src/of_asprintf.m from [ebb2514163] to [6358474411].
| ︙ | ︙ | |||
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. */ #include "config.h" #include <stdlib.h> #include <string.h> #include <stdarg.h> #include <stdbool.h> #include <wchar.h> #import "OFString.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. */ #include "config.h" #define _GNU_SOURCE #include <stdlib.h> #include <string.h> #include <stdarg.h> #include <stdbool.h> #include <wchar.h> #import "OFString.h" |
| ︙ | ︙ |