changeset 4:0e1afa97fe89

add cbcsh and minor change.
author Taiki TAIRA <e095767@ie.u-ryukyu.ac.jp>
date Fri, 27 Jul 2012 21:09:06 +0900
parents ff247dc87f35
children 77c6ae852e6c
files cbcsh.c
diffstat 1 files changed, 17 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cbcsh.c	Fri Jul 27 21:09:06 2012 +0900
@@ -0,0 +1,17 @@
+#include <stdio.h>
+__code loop()
+{
+
+}
+
+__code shmain()
+{
+    goto loop();
+}
+
+
+int main()
+{
+    goto shmain();
+    return 0;
+}