Differences From Artifact [20703f949d]:
- File
tests/OFXMLFactory/OFXMLFactory.m
— part of check-in
[0889c2fc55]
at
2008-11-26 21:35:03
on branch trunk
— glibc breaks when trying to use stdio.h and wchar.h.
This is stupid, as it's possible you don't ever output a wchar_t and
just need wcscmp, but this forces us to always use wprintf when we need
a wchar_t somewhere in the file. glibc really is a nightmare. (user: js, size: 5465) [annotate] [blame] [check-ins using]
To Artifact [9182c852bf]:
- File tests/OFXMLFactory/OFXMLFactory.m — part of check-in [4b8666fe15] at 2008-11-30 15:17:09 on branch trunk — Clean up imports. (user: js, size: 5486) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | + + + | /* * Copyright (c) 2008 * Jonathan Schleifer <js@webkeks.org> * * All rights reserved. * * This file is part of libobjfw. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "config.h" #define _ISOC99_SOURCE #import <stdlib.h> #import <string.h> #import <wchar.h> #import "OFXMLFactory.h" inline void |
︙ |