fix include issues

Signed-off-by: Aidan Hahn <aidan@aidanis.online>
This commit is contained in:
Aidan Hahn 2022-07-22 09:52:52 -07:00
parent 9ee1aacd83
commit 7ff43f0346
No known key found for this signature in database
GPG key ID: 18D8AD0591CA303E
2 changed files with 14 additions and 5 deletions

11
alog.h
View file

@ -30,7 +30,7 @@ struct _global_logging_state {
* I am sticking with it here.
*
* Alloc'ed/Initialized by a call to init_alog()*/
struct _global_logging_state *ALOG_LOGGING_STATE;
extern struct _global_logging_state *ALOG_LOGGING_STATE;
/* alternative impl I didnt want to write
* it would have required a bunch of getters and setters
@ -42,10 +42,10 @@ struct _global_logging_state *ALOG_LOGGING_STATE;
#define LOG_DEBUG_MSGS_FIELD = 2;
int flags = 0; */
int _alog_num_out_fds;
int *_alog_out_fds;
int _alog_num_err_fds;
int *_alog_err_fds;
extern int _alog_num_out_fds;
extern int *_alog_out_fds;
extern int _alog_num_err_fds;
extern int *_alog_err_fds;
typedef enum {
// Not printed by default. Useful for debug info
@ -84,4 +84,5 @@ void alog(alog_sev, const char *, ...);
#ifdef ALOG_HIJACK_PRINTF
int printf(const char *format, ...);
#endif // ALOG_HIJACK_PRINTF
#endif // ALOG_H