Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | ea54358 | 2017-01-16 07:04:21 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2016 Google, Inc |
Simon Glass | ea54358 | 2017-01-16 07:04:21 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <asm/setjmp.h> |
| 8 | |
| 9 | int setjmp(struct jmp_buf_data *jmp_buf) |
| 10 | { |
| 11 | printf("WARNING: setjmp() is not supported\n"); |
| 12 | |
| 13 | return 0; |
| 14 | } |
| 15 | |
| 16 | void longjmp(struct jmp_buf_data *jmp_buf, int val) |
| 17 | { |
| 18 | printf("WARNING: longjmp() is not supported\n"); |
| 19 | } |