nostrdb: pull latest, adding flatcc and lmdb

This commit is contained in:
William Casarin
2023-08-25 12:32:30 -07:00
parent f30f93f65c
commit 1f5f1e28a4
104 changed files with 36269 additions and 28 deletions

View File

@@ -0,0 +1,25 @@
#ifndef PORTABLE_BASIC_H
#define PORTABLE_BASIC_H
/*
* Basic features need to make compilers support the most common moden C
* features, and endian / unligned read support as well.
*
* It is not assumed that this file is always included.
* Other include files are independent or include what they need.
*/
#include "pversion.h"
#include "pwarnings.h"
/* Featutures that ought to be supported by C11, but some aren't. */
#include "pinttypes.h"
#include "pstdalign.h"
#include "pinline.h"
#include "pstatic_assert.h"
/* These are not supported by C11 and are general platform abstractions. */
#include "pendian.h"
#include "punaligned.h"
#endif /* PORTABLE_BASIC_H */