nppilot/external/avr-stl-stubs/include/algorithm
Michael Hope 4b61ec36e3 Imported the AVR STL 1.1 libraries.
Stubbed out more of STL.
2013-12-17 20:47:35 +01:00

8 lines
100 B
Plaintext

#pragma once
namespace std
{
template<typename T>
T abs(T v) { return v >= 0 ? v : -v; }
}