[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / lib / sdk / crt / math / labs.c
diff --git a/reactos/lib/sdk/crt/math/labs.c b/reactos/lib/sdk/crt/math/labs.c
deleted file mode 100644 (file)
index 51a1d80..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-
-#ifdef _MSC_VER
-#pragma warning(disable: 4164)
-#pragma function(labs)
-#endif
-
-/*
- * @implemented
- */
-long
-labs(long j)
-{
-  return j<0 ? -j : j;
-}