diff options
author | David Robillard <d@drobilla.net> | 2011-12-11 22:11:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-12-11 22:11:22 +0000 |
commit | ea1936a594d7e4e656731223b76d355fc5431ef9 (patch) | |
tree | 87393e02793fba4cd44fb8da2db83f24380b509a /src/writer.c | |
parent | e08decb5992d6511e6896939a4cd9ad157831b78 (diff) | |
download | serd-ea1936a594d7e4e656731223b76d355fc5431ef9.tar.gz serd-ea1936a594d7e4e656731223b76d355fc5431ef9.tar.bz2 serd-ea1936a594d7e4e656731223b76d355fc5431ef9.zip |
Move all #ifdef gunk to serd_internal.h.
Centralise file open and buffer allocation to localize platform tweaks.
git-svn-id: http://svn.drobilla.net/serd/trunk@244 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'src/writer.c')
-rw-r--r-- | src/writer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/writer.c b/src/writer.c index 8ab533d4..58ac35cd 100644 --- a/src/writer.c +++ b/src/writer.c @@ -14,13 +14,13 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "serd_internal.h" + #include <assert.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include "serd_internal.h" - #define NS_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#" #define NS_XSD "http://www.w3.org/2001/XMLSchema#" |