set.c: SetNoisyDI() constify and add prototype
This commit is contained in:
parent
f51ad56aea
commit
2b69b07860
|
|
@ -172,7 +172,7 @@ SetNoisyBool(parm,valueS,file)
|
|||
void
|
||||
SetNoisyDI(parm,valueS,file)
|
||||
dlong *parm; /* BY NP */
|
||||
char *valueS;
|
||||
const char *valueS;
|
||||
FILE *file;
|
||||
{
|
||||
/* If value not null, set parm */
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ extern void ForkChildAdd();
|
|||
extern int PaEnum(const char *path, const char *file, int (*proc)(), ClientData cdata);
|
||||
extern int paVisitProcess();
|
||||
extern void SetNoisyInt(int *parm, const char *valueS, FILE *file);
|
||||
extern void SetNoisyDI();
|
||||
extern void SetNoisyDI(dlong *parm, const char *valueS, FILE *file);
|
||||
extern bool ParsSplit();
|
||||
|
||||
#ifdef HAVE_ZLIB
|
||||
|
|
|
|||
Loading…
Reference in New Issue