update for HEAD-2003091401
[reactos.git] / lib / crtdll / setjmp / setjmp.c
index 95709d3..6234c33 100644 (file)
@@ -16,6 +16,9 @@ typedef struct {
 
 /* jumps back to position specified in jmp_buf */
 
+/*
+ * @implemented
+ */
 int longjmp( jmp_buf env, int value )
 {
                 //push ebp             generated by the compiler
@@ -93,6 +96,9 @@ int longjmp( jmp_buf env, int value )
 
 #ifdef __GNUC__
 
+/*
+ * @implemented
+ */
 int _setjmp( jmp_buf env )
 {
                 //push ebp             generated by the compiler