[T106][ZXW-22]7520V3SCV2.01.01.02P42U09_VEC_V0.8_AP_VEC origin source commit

Change-Id: Ic6e05d89ecd62fc34f82b23dcf306c93764aec4b
diff --git a/ap/libc/glibc/glibc-2.22/include/setjmp.h b/ap/libc/glibc/glibc-2.22/include/setjmp.h
new file mode 100644
index 0000000..622bb31
--- /dev/null
+++ b/ap/libc/glibc/glibc-2.22/include/setjmp.h
@@ -0,0 +1,29 @@
+#ifndef _SETJMP_H
+#include <setjmp/setjmp.h>
+
+#ifndef _ISOMAC
+/* Now define the internal interfaces.  */
+
+/* Internal machine-dependent function to restore context sans signal mask.  */
+extern void __longjmp (__jmp_buf __env, int __val)
+     __attribute__ ((__noreturn__));
+
+/* Internal function to possibly save the current mask of blocked signals
+   in ENV, and always set the flag saying whether or not it was saved.
+   This is used by the machine-dependent definition of `__sigsetjmp'.
+   Always returns zero, for convenience.  */
+extern int __sigjmp_save (jmp_buf __env, int __savemask);
+
+extern void _longjmp_unwind (jmp_buf env, int val);
+
+extern void __libc_siglongjmp (sigjmp_buf env, int val)
+	  __attribute__ ((noreturn));
+extern void __libc_longjmp (sigjmp_buf env, int val)
+     __attribute__ ((noreturn));
+libc_hidden_proto (__libc_longjmp)
+
+libc_hidden_proto (_setjmp)
+libc_hidden_proto (__sigsetjmp)
+#endif
+
+#endif