29 lines
872 B
C
29 lines
872 B
C
|
// Copyright (c) 2025, Zak Fenton
|
||
|
// Zak Fenton's libc is licensed under the Mulan PSL v2. You can use this
|
||
|
// software according to the terms and conditions of the Mulan PSL v2.
|
||
|
// You may obtain a copy of Mulan PSL v2 at:
|
||
|
// http://license.coscl.org.cn/MulanPSL2
|
||
|
// THIS SOFTWARE IS PROVIDED ON AN “AS IS” BASIS, WITHOUT warranties of
|
||
|
// any kind, either express or implied, including but not limited to
|
||
|
// non-infringement, merchantability or fit for a particular purpose.
|
||
|
// See the Mulan PSL v2 for more details.
|
||
|
|
||
|
#ifndef _LIBC_SETJMP_H
|
||
|
#define _LIBC_SETJMP_H
|
||
|
|
||
|
/*struct jmp_buf_struct {
|
||
|
int todo;
|
||
|
};
|
||
|
|
||
|
typedef struct jmp_buf_struct jmp_buf;*/
|
||
|
typedef int jmp_buf;
|
||
|
|
||
|
#define setjmp(x) \
|
||
|
0
|
||
|
// (printf("WARNING: Unimplemented: setjmp\n") && 0)
|
||
|
#define longjmp(x,y) \
|
||
|
printf("WARNING: Unimplemented: longjmp\n")
|
||
|
|
||
|
/* From ifndef at top of file: */
|
||
|
#endif
|