set.c: SetNoisyInt() constify and add prototype
This commit is contained in:
parent
5b97638ac7
commit
f51ad56aea
|
|
@ -66,7 +66,7 @@ static char rcsid[] __attribute__ ((unused)) = "$Header: /usr/cvsroot/magic-8.0/
|
|||
void
|
||||
SetNoisyInt(parm,valueS,file)
|
||||
int *parm;
|
||||
char *valueS;
|
||||
const char *valueS;
|
||||
FILE *file;
|
||||
{
|
||||
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ extern void FindDisplay();
|
|||
extern void ForkChildAdd();
|
||||
extern int PaEnum(const char *path, const char *file, int (*proc)(), ClientData cdata);
|
||||
extern int paVisitProcess();
|
||||
extern void SetNoisyInt();
|
||||
extern void SetNoisyInt(int *parm, const char *valueS, FILE *file);
|
||||
extern void SetNoisyDI();
|
||||
extern bool ParsSplit();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue