Merge "Use void instead of no parameters in 2 function declarations." am: 11b91e7c28

am: cbe556ee62

Change-Id: I45e39dbfa1b29e4d7384dc5fcf982b8d8d607a50
This commit is contained in:
Ian Elliott 2017-07-10 12:12:39 +00:00 committed by android-build-merger
commit 2a064ca6e4

View file

@ -161,7 +161,7 @@ typedef enum {
#endif
#if __ANDROID_USE_LIBLOG_CLOCK_INTERFACE
clockid_t android_log_clockid();
clockid_t android_log_clockid(void);
#endif
#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
* all O_CLOEXEC so wil self clean on exec().
*/
void __android_log_close();
void __android_log_close(void);
#endif
#ifndef __ANDROID_USE_LIBLOG_RATELIMIT_INTERFACE