More const correctness.
Removed prototype for unimplemented getpgid() function. Removed a value return from a void function.
This commit is contained in:
@@ -11,7 +11,7 @@ _PROTOTYPE(char *itoa, (int _n));
|
||||
_PROTOTYPE(char *getpass, (const char *_prompt));
|
||||
|
||||
/* Miscellaneous MINIX. */
|
||||
_PROTOTYPE(void std_err, (char *_s));
|
||||
_PROTOTYPE(void std_err, (const char *_s));
|
||||
_PROTOTYPE(void prints, (const char *_s, ...));
|
||||
_PROTOTYPE(int fsversion, (char *_dev, char *_prog));
|
||||
_PROTOTYPE(int getprocessor, (void));
|
||||
|
||||
@@ -137,7 +137,6 @@ _PROTOTYPE( ssize_t pread, (int, void *, size_t, off_t) );
|
||||
_PROTOTYPE( int rmdir, (const char *_path) );
|
||||
_PROTOTYPE( int setgid, (_mnx_Gid_t _gid) );
|
||||
_PROTOTYPE( int setegid, (_mnx_Gid_t _gid) );
|
||||
_PROTOTYPE( int setpgid, (pid_t _pid, pid_t _pgid) );
|
||||
_PROTOTYPE( pid_t setsid, (void) );
|
||||
_PROTOTYPE( int setuid, (_mnx_Uid_t _uid) );
|
||||
_PROTOTYPE( int seteuid, (_mnx_Uid_t _uid) );
|
||||
|
||||
Reference in New Issue
Block a user