changed commented #defines to #undefs
authorceriel <none@none>
Thu, 30 Nov 1989 14:25:40 +0000 (14:25 +0000)
committerceriel <none@none>
Thu, 30 Nov 1989 14:25:40 +0000 (14:25 +0000)
modules/src/malloc/param.h

index 0fe298a..abeb3a1 100644 (file)
@@ -5,7 +5,7 @@
  */
 #include       "size_type.h"
 
-/*#    define  NON_STANDARD    /*      If defined, the contents of a block
+#      undef   NON_STANDARD    /*      If defined, the contents of a block
                                        will NOT be left undisturbed after it
                                        is freed, as opposed to what it says
                                        in the manual (malloc(2)).
                                        implementation.
                                */
 
-/*#    define  ASSERT          /*      If defined, some inexpensive tests
+#      undef   ASSERT          /*      If defined, some inexpensive tests
                                        will be made to ensure the
                                        correctness of some sensitive data.
                                        It often turns an uncontrolled crash
                                        into a controlled one.
                                */
 
-/*#    define  CHECK           /*      If defined, extensive and expensive
+#      undef   CHECK           /*      If defined, extensive and expensive
                                        tests will be done, inculding a
                                        checksum on the mallinks (chunk
                                        information blocks).  The resulting
@@ -36,7 +36,7 @@
                                        form; it aborts afterwards if n != 0.
                                */
 
-/*#    define  EXTERN          /*      If defined, all static names will
+#      undef   EXTERN          /*      If defined, all static names will
                                        become extern, which is a help in
                                        using adb(1) or prof(1)
                                */