diff options
author | David Robillard <d@drobilla.net> | 2024-12-11 16:19:19 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-12-11 16:19:19 -0500 |
commit | 73f3e9a0337fc757edceda60936785c7a20f95c0 (patch) | |
tree | 022bb1ad6a4fe926865a4db64b515773c7f7d387 | |
parent | 22d0e471ee76d065e535cea9880af29375895cc4 (diff) | |
download | serd-73f3e9a0337fc757edceda60936785c7a20f95c0.tar.gz serd-73f3e9a0337fc757edceda60936785c7a20f95c0.tar.bz2 serd-73f3e9a0337fc757edceda60936785c7a20f95c0.zip |
Remove old Windows compatibility gunk
-rw-r--r-- | src/node.c | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -17,15 +17,6 @@ #include <stdlib.h> #include <string.h> -#ifdef _WIN32 -# ifndef isnan -# define isnan(x) _isnan(x) -# endif -# ifndef isinf -# define isinf(x) (!_finite(x)) -# endif -#endif - static size_t serd_uri_string_length(const SerdURI* const uri) { |