* Fixed svn:eol-style and svn:keywords properties
[fw/sdcc] / support / regression / tests / bug-1654060.c
index aba5246365ec789f478390175b6dd1597403922e..bc1bb09f93032a82ea72a62164419882021545b5 100644 (file)
@@ -1,26 +1,26 @@
-/*\r
-   bug-1654060.c\r
-\r
-   typedef within function causes syntax error\r
-*/\r
-\r
-#include <testfwk.h>\r
-typedef char mytype1;\r
-typedef int mytype2;\r
-\r
-mytype1 c1 = 'A';\r
-mytype2 i1 = 12345;\r
-\r
-void testTypedef(void)\r
-{\r
-  typedef int mytype1;\r
-  typedef char mytype2;\r
-\r
-  mytype1 i2 = 21435;\r
-  mytype2 c2 = 'B';\r
-\r
-  ASSERT(c1 == 'A');\r
-  ASSERT(i1 == 12345);\r
-  ASSERT(c1 == 'B');\r
-  ASSERT(i1 == 21435);\r
-}\r
+/*
+   bug-1654060.c
+
+   typedef within function causes syntax error
+*/
+
+#include <testfwk.h>
+typedef char mytype1;
+typedef int mytype2;
+
+mytype1 c1 = 'A';
+mytype2 i1 = 12345;
+
+void testTypedef(void)
+{
+  typedef int mytype1;
+  typedef char mytype2;
+
+  mytype1 i2 = 21435;
+  mytype2 c2 = 'B';
+
+  ASSERT(c1 == 'A');
+  ASSERT(i1 == 12345);
+  ASSERT(c1 == 'B');
+  ASSERT(i1 == 21435);
+}