#include <stdlib.h>
#include <string.h>
-char * _DtCliSrvGetDtUserSession()
+char * _DtCliSrvGetDtUserSession(void)
{
char * envVar = getenv("DTUSERSESSION");
char * ret_envVar = NULL;
* If that is NULL, returns NULL.
*
*****************************************************************************/
-char *_DtHelpGetLocale()
+char *_DtHelpGetLocale(void)
{
char *loc;
* Table index for the hex values. Initialized once, first time.
* Used for translation value or delimiter significance lookup.
*/
-static void initHexTable()
+static void initHexTable(void)
{
/*
* We build the table at run time for several reasons:
/*
* read next hex value in the input stream, return -1 if EOF
*/
-static int NextInt (fstream)
- _DtGrStream *fstream;
+static int NextInt (_DtGrStream *fstream)
{
int ch;
int value = 0;