diff options
author | Mattias Andrée <maandree@kth.se> | 2024-06-29 17:11:06 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-06-29 17:11:06 +0200 |
commit | 2d325db65a6ea4603d048593df39537d204e932a (patch) | |
tree | f187e04c90e8a931e6696796c3cb3ab01249a017 /libsimple.h | |
parent | Add (libsimple_)_[v]e[n]printf (diff) | |
download | libsimple-2d325db65a6ea4603d048593df39537d204e932a.tar.gz libsimple-2d325db65a6ea4603d048593df39537d204e932a.tar.bz2 libsimple-2d325db65a6ea4603d048593df39537d204e932a.tar.xz |
Properly fix support for version of C before C11
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | libsimple.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsimple.h b/libsimple.h index 25e9a1a..1b22653 100644 --- a/libsimple.h +++ b/libsimple.h @@ -152,8 +152,8 @@ #include "libsimple/valloc.h" #include "libsimple/pvallocz.h" #include "libsimple/pvalloc.h" -#include "libsimple/aligned_alloc.h" #include "libsimple/aligned_allocz.h" +#include "libsimple/aligned_alloc.h" #include "libsimple/posix_memalignz.h" #include "libsimple/posix_memalign.h" #include "libsimple/env.h" |