Skip to content

Commit f863e60

Browse files
authored
packet_put: Add missing bug.h include for global_die (#84)
``` packet_put.c:53:9: error: call to undeclared function 'global_die'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] global_die(111); ^ 1 error generated. ```
1 parent cc242da commit f863e60

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tinyssh/packet_put.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Public domain.
66

77
#include "uint32_pack_big.h"
88
#include "buf.h"
9+
#include "bug.h"
910
#include "sshcrypto.h"
1011
#include "ssh.h"
1112
#include "log.h"

0 commit comments

Comments
 (0)