mindex.c

In-memory ordered store and fetch library
git clone git://git.finwo.net/lib/mindex.c
Log | Files | Refs | README | LICENSE

commit 3af2694d272a361c540eb6c8d4a2c19292045673
parent 65db6e11cd3fd34aa3981ccb555f1a3524041dc2
Author: finwo <finwo@pm.me>
Date:   Wed, 11 Mar 2026 23:24:47 +0100

Fix unchecked _GNU_SOURCE definition

Diffstat:
Msrc/mindex.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/mindex.c b/src/mindex.c @@ -1,4 +1,6 @@ +#ifndef _GNU_SOURCE #define _GNU_SOURCE +#endif #include <stdlib.h> #include <string.h>