The unified diff between revisions [d0420ebd..] and [24d5b9f4..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'abs.h'

#
# old_revision [d0420ebd87c820e33a32b29727989516e15980a8]
# new_revision [24d5b9f4dff9135787b198fe1127d9c1e3326b9c]
#
# add_file "abs.h"
#  content [c484ad4af3d7c487cd3ff1d3be16c6841ba01429]
#
============================================================
--- /dev/null	
+++ abs.h	c484ad4af3d7c487cd3ff1d3be16c6841ba01429
@@ -0,0 +1,3 @@
+/* abs.h */
+
+#define abs(x) (((x) < 0)? (-(x)) : (x))