Skip to content

Commit

Permalink
Minor portability update
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Dec 16, 2013
1 parent 44509bf commit 9768eaf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion 2010/12/24/ZX_Thermometer.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,13 @@ extern "C" {
#include <stdio.h> //not needed yet
#include <string.h> //needed for strlen()
#include <inttypes.h>
#include "WConstants.h" //all things wiring / arduino

//#include "WConstants.h" //all things wiring / arduino
#if ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
}


Expand Down

0 comments on commit 9768eaf

Please sign in to comment.