mirror of
https://github.com/logos-messaging/logos-messaging-rust-bindings.git
synced 2026-01-20 14:53:08 +00:00
14 lines
249 B
C
14 lines
249 B
C
|
|
|
||
|
|
/*
|
||
|
|
This file is needed to avoid errors like the following when linking the waku-sys lib crate:
|
||
|
|
<<undefined reference to `cmdCount'>>
|
||
|
|
and
|
||
|
|
<<undefined reference to `cmdLine'>>
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int cmdCount = 0;
|
||
|
|
char** cmdLine = NULL;
|
||
|
|
|