The unified diff between revisions [d0420ebd..] and [4f22e7ef..] 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 [4f22e7ef7d3064e3b51a5b868a4722f3f13c747b]
#
# add_file "abs.h"
#  content [c484ad4af3d7c487cd3ff1d3be16c6841ba01429]
#
============================================================
--- /dev/null	
+++ abs.h	c484ad4af3d7c487cd3ff1d3be16c6841ba01429
@@ -0,0 +1,3 @@
+/* abs.h */
+
+#define abs(x) (((x) < 0)? (-(x)) : (x))