set.c: SetNoisyBool() constify and add prototype
This commit is contained in:
parent
2b69b07860
commit
f22ecda44a
|
|
@ -98,7 +98,7 @@ SetNoisyInt(parm,valueS,file)
|
||||||
int
|
int
|
||||||
SetNoisyBool(parm,valueS,file)
|
SetNoisyBool(parm,valueS,file)
|
||||||
bool *parm;
|
bool *parm;
|
||||||
char *valueS;
|
const char *valueS;
|
||||||
FILE *file;
|
FILE *file;
|
||||||
{
|
{
|
||||||
int n, which, result = -2;
|
int n, which, result = -2;
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,7 @@ extern gzFile PaLockZOpen(const char *file, const char *mode, const char *ext, c
|
||||||
extern char *PaCheckCompressed(const char *filename);
|
extern char *PaCheckCompressed(const char *filename);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern int SetNoisyBool(bool *, char *, FILE *);
|
extern int SetNoisyBool(bool *parm, const char *valueS, FILE *file);
|
||||||
|
|
||||||
#ifdef FILE_LOCKS
|
#ifdef FILE_LOCKS
|
||||||
extern FILE *flock_open();
|
extern FILE *flock_open();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue