Merge "Use void instead of no parameters in 2 function declarations." am: 11b91e7c28 am: cbe556ee62
am: 2a064ca6e4
Change-Id: I8292eead31f078714d6a869f8f10409650ebc91f
This commit is contained in:
commit
3bfce07b86
1 changed files with 2 additions and 2 deletions
|
|
@ -161,7 +161,7 @@ typedef enum {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __ANDROID_USE_LIBLOG_CLOCK_INTERFACE
|
#if __ANDROID_USE_LIBLOG_CLOCK_INTERFACE
|
||||||
clockid_t android_log_clockid();
|
clockid_t android_log_clockid(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* __linux__ */
|
#endif /* __linux__ */
|
||||||
|
|
@ -185,7 +185,7 @@ clockid_t android_log_clockid();
|
||||||
* May be used to clean up File descriptors after a Fork, the resources are
|
* May be used to clean up File descriptors after a Fork, the resources are
|
||||||
* all O_CLOEXEC so wil self clean on exec().
|
* all O_CLOEXEC so wil self clean on exec().
|
||||||
*/
|
*/
|
||||||
void __android_log_close();
|
void __android_log_close(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __ANDROID_USE_LIBLOG_RATELIMIT_INTERFACE
|
#ifndef __ANDROID_USE_LIBLOG_RATELIMIT_INTERFACE
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue