]> git.gag.com Git - fw/sdcc/blobdiff - support/regression/tests/bug1496419.c
* Fixed svn:eol-style and svn:keywords properties
[fw/sdcc] / support / regression / tests / bug1496419.c
index 192686065cc3c3034681468600bb4b306e055af4..39c738348ae3d2ef7e20ad7bc4cf07b856ab7a54 100644 (file)
@@ -1,21 +1,21 @@
-/*\r
-   bug1057979.c\r
-*/\r
-\r
-#include <testfwk.h>\r
-\r
-typedef struct _NODE\r
-{\r
-  const struct _NODE * enter;\r
-  const struct _NODE * down;\r
-}NODE;\r
-\r
-const NODE node1 = {NULL, NULL};\r
-\r
-//sdcc loops allocating space for new symbols node1 and\r
-//zzz until there is no more memory, then segfaults\r
-//\r
-//The reference to zzz inside the declaration of zzz\r
-//triggers a loop allocating space for symbols node1\r
-//and zzz\r
-const NODE zzz = {&node1, &zzz};\r
+/*
+   bug1057979.c
+*/
+
+#include <testfwk.h>
+
+typedef struct _NODE
+{
+  const struct _NODE * enter;
+  const struct _NODE * down;
+}NODE;
+
+const NODE node1 = {NULL, NULL};
+
+//sdcc loops allocating space for new symbols node1 and
+//zzz until there is no more memory, then segfaults
+//
+//The reference to zzz inside the declaration of zzz
+//triggers a loop allocating space for symbols node1
+//and zzz
+const NODE zzz = {&node1, &zzz};