Skip to content

Commit

Permalink
fix typo in conditional include stopping stdint.h from being included
Browse files Browse the repository at this point in the history
fixes gitub issue #105
  • Loading branch information
jtsiomb committed Jun 16, 2024
1 parent 9751030 commit c6f8a6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit c6f8a6b

Please sign in to comment.