mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-03 19:43:09 +08:00
ui: Load readline after stdio.h
This commit is contained in:
parent
8d4acbe3a6
commit
73dec1e072
1 changed files with 4 additions and 3 deletions
|
@ -14,9 +14,6 @@
|
||||||
#if !defined(_WIN32)
|
#if !defined(_WIN32)
|
||||||
#define _POSIX_C_SOURCE 200112L
|
#define _POSIX_C_SOURCE 200112L
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_READLINE
|
|
||||||
#include <readline/readline.h>
|
|
||||||
#endif
|
|
||||||
#include "ui.h"
|
#include "ui.h"
|
||||||
#include "commonutil.h" // ARRAYLEN
|
#include "commonutil.h" // ARRAYLEN
|
||||||
|
|
||||||
|
@ -24,6 +21,10 @@
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_READLINE
|
||||||
|
#include <readline/readline.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <complex.h>
|
#include <complex.h>
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "proxmark3.h" // PROXLOG
|
#include "proxmark3.h" // PROXLOG
|
||||||
|
|
Loading…
Reference in a new issue