1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-11 09:43:08 +03:00

Fixed unused argument warning

This commit is contained in:
Cristian Maglie
2015-05-29 20:47:56 +02:00
parent 2cbdc121e9
commit 074d910857

View File

@@ -20,7 +20,7 @@
#include <Arduino.h>
// 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.
// May be redefined by variant files.