mirror of
https://github.com/nasa/trick.git
synced 2025-06-22 08:50:06 +00:00
Explicitly specify void arg for C functions that take no arguments. (#670)
* Clock empty args to void * command_line func empty args to void * DataRecord func empty args to void * debug_pause func empty args to void * echojobs func empty args to void * ExternalApplication func empty args to void * FrameLog func empty args to void * MasterSlave func empty args to void * MonteCarlo func empty args to void * outdllist func proto empty args to void * sie func empty args to void * SimTime func empty args to void * UnitTest func empty args to void * var_server func empty args to void * wcs func empty args to void
This commit is contained in:
@ -16,10 +16,10 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
#if __Lynx__
|
||||
int wcs_to_ncs_len ();
|
||||
int ncs_to_wcs_len ();
|
||||
int wcs_to_ncs ();
|
||||
int ncs_to_wcs();
|
||||
int wcs_to_ncs_len (void);
|
||||
int ncs_to_wcs_len (void);
|
||||
int wcs_to_ncs (void);
|
||||
int ncs_to_wcs(void);
|
||||
#else
|
||||
#include <stddef.h>
|
||||
#include <wchar.h>
|
||||
|
Reference in New Issue
Block a user