Merge pull request #663 from Calinou/fix-threads-missing-include

Fix build error on Linux due to missing `<stdint.h>` include
This commit is contained in:
Timothee "TTimo" Besset 2021-03-06 08:46:54 -06:00 committed by GitHub
commit ebf1afd8c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,8 @@
#include <pthread.h>
#endif
#include <stdint.h>
#include "cmdlib.h"
#include "mathlib.h"
#include "inout.h"