diff options
author | David Robillard <d@drobilla.net> | 2016-09-16 23:56:17 +0800 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-09-16 23:56:17 +0800 |
commit | 30caa09d56a3d566d3b592774a5f55077836e492 (patch) | |
tree | 17f6247129590c03e24d72f04d25c6d09598cb86 /src/util.c | |
parent | 48d2fce14926e4c77bf78f8775426f4a5e990b37 (diff) | |
download | lilv-30caa09d56a3d566d3b592774a5f55077836e492.tar.gz lilv-30caa09d56a3d566d3b592774a5f55077836e492.tar.bz2 lilv-30caa09d56a3d566d3b592774a5f55077836e492.zip |
Add missing include
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* - Copyright 2007-2015 David Robillard <http://drobilla.net> + Copyright 2007-2016 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -27,6 +27,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <stddef.h> #ifdef _WIN32 #ifndef _WIN32_WINNT @@ -63,7 +64,7 @@ CreateSymbolicLink(LPCTSTR linkpath, LPCTSTR targetpath, DWORD flags) #endif #ifndef PAGE_SIZE -# define PAGE_SIZE 4096 +# define PAGE_SIZE 4096 #endif void |