Merge pull request #181 from cgzones/missing_prototypes

Add -Wmissing-prototypes compiler warning
This commit is contained in:
Nathan Scott 2020-09-28 16:30:57 +10:00 committed by GitHub
commit 8c9bd20013
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 24 additions and 9 deletions

View File

@ -273,6 +273,7 @@ AM_CFLAGS="\
-Wfloat-equal\
-Wmissing-format-attribute\
-Wmissing-noreturn\
-Wmissing-prototypes\
-Wpointer-arith\
-Wshadow\
-Wstrict-prototypes\

View File

@ -1,5 +1,4 @@
#include "BatteryMeter.h"
#include "Battery.h"
#include <math.h>

View File

@ -1,6 +1,8 @@
#ifndef HEADER_Battery
#define HEADER_Battery
#include "BatteryMeter.h"
void Battery_getData(double* level, ACPresence* isOnAC);
#endif

View File

@ -6,7 +6,8 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "BatteryMeter.h"
#include "Battery.h"
#include <math.h>
#include <sys/sysctl.h>

View File

@ -8,6 +8,8 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "BatteryMeter.h"
void Battery_getData(double* level, ACPresence* isOnAC);
#endif

View File

@ -5,7 +5,8 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "BatteryMeter.h"
#include "Battery.h"
#include <math.h>
#include <sys/sysctl.h>

View File

@ -7,6 +7,8 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "BatteryMeter.h"
void Battery_getData(double* level, ACPresence* isOnAC);
#endif

View File

@ -6,7 +6,8 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "BatteryMeter.h"
#include "Battery.h"
#include <sys/sysctl.h>
#include <sys/sensors.h>
#include <errno.h>

View File

@ -8,6 +8,8 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "BatteryMeter.h"
void Battery_getData(double* level, ACPresence* isOnAC);
#endif

View File

@ -1,6 +1,6 @@
#include <math.h>
#include "Battery.h"
#include "BatteryMeter.h"
#include <math.h>
void Battery_getData(double* level, ACPresence* isOnAC) {
*level = NAN;

View File

@ -1,6 +1,8 @@
#ifndef HEADER_Battery
#define HEADER_Battery
#include "BatteryMeter.h"
void Battery_getData(double* level, ACPresence* isOnAC);
#endif

View File

@ -1,6 +1,6 @@
#include <math.h>
#include "Battery.h"
#include "BatteryMeter.h"
#include <math.h>
void Battery_getData(double* level, ACPresence* isOnAC) {
*level = NAN;

View File

@ -1,6 +1,8 @@
#ifndef HEADER_Battery
#define HEADER_Battery
#include "BatteryMeter.h"
void Battery_getData(double* level, ACPresence* isOnAC);
#endif