set.c: SetNoisyDI() constify and add prototype

This commit is contained in:
Darryl L. Miles 2024-10-12 09:27:30 +01:00 committed by Tim Edwards
parent f51ad56aea
commit 2b69b07860
2 changed files with 2 additions and 2 deletions

View File

@ -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 */

View File

@ -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