Fixed unused argument warning

This commit is contained in:
Cristian Maglie 2015-05-29 20:47:56 +02:00
parent 2cbdc121e9
commit 074d910857
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@
#include <Arduino.h>
//Declared weak in Arduino.h to allow user redefinitions.
int atexit(void (*func)()) { return 0; }
// Declared weak in Arduino.h to allow user redefinitions.
int atexit(void (* /*func*/ )()) { return 0; }
// Weak empty variant initialization function.
// May be redefined by variant files.