mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-20 21:01:25 +03:00
Fixed unused argument warning
This commit is contained in:
@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
|
|
||||||
//Declared weak in Arduino.h to allow user redefinitions.
|
// Declared weak in Arduino.h to allow user redefinitions.
|
||||||
int atexit(void (*func)()) { return 0; }
|
int atexit(void (* /*func*/ )()) { return 0; }
|
||||||
|
|
||||||
// Weak empty variant initialization function.
|
// Weak empty variant initialization function.
|
||||||
// May be redefined by variant files.
|
// May be redefined by variant files.
|
||||||
|
Reference in New Issue
Block a user