1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-13 10:29:35 +01:00

added newline at the end of file to get rid of compiler and SVN warnings

This commit is contained in:
Hans-Christoph Steiner 2008-03-24 17:28:17 +00:00
parent 85c8235947
commit 27b2712018

View File

@ -55,4 +55,4 @@ long random(long howsmall, long howbig)
long map(long x, long in_min, long in_max, long out_min, long out_max)
{
return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
}
}