fix typo in conditional include stopping stdint.h from being included

fixes gitub issue #105
master
John Tsiombikas 2024-06-16 20:10:26 +03:00
rodzic 9751030bfc
commit c6f8a6bf4a
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -3,9 +3,9 @@
#include "config.h"
#ifdef HAVE_STDINT_H_
#ifdef HAVE_STDINT_H
#include <stdint.h>
#elif defined(HAVE_INTTYPES_H_)
#elif defined(HAVE_INTTYPES_H)
#include <inttypes.h>
#endif