diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-02-29 06:03:15 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-02-29 06:03:15 -0800 |
commit | ffdf3fc55d40f64030b6c0037e80dbca404a69e0 (patch) | |
tree | 1e16a38ada360d0875a09d0a357e177caf65bb3e /sysif.h | |
parent | 2c5bda843430226f16d589455ebd40ee3bfabb36 (diff) | |
download | txr-ffdf3fc55d40f64030b6c0037e80dbca404a69e0.tar.gz txr-ffdf3fc55d40f64030b6c0037e80dbca404a69e0.tar.bz2 txr-ffdf3fc55d40f64030b6c0037e80dbca404a69e0.zip |
Missing return type on some inline functions.
* sysif.h (repress_privilege, drop_privilege): Add missing
void.
Diffstat (limited to 'sysif.h')
-rw-r--r-- | sysif.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -54,8 +54,8 @@ void repress_privilege(void); void drop_privilege(void); void simulate_setuid(val open_script); #else -INLINE repress_privilege(void) { } -INLINE drop_privilege(void) { } +INLINE void repress_privilege(void) { } +INLINE void drop_privilege(void) { } INLINE void simulate_setuid(val open_script) { } #endif void sysif_init(void); |