blob: 5d4a74a571a000d0a65f3becbb701eb1704b95fb [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassea543582017-01-16 07:04:21 -07002/*
3 * Copyright (c) 2016 Google, Inc
Simon Glassea543582017-01-16 07:04:21 -07004 */
5
6#include <common.h>
7#include <asm/setjmp.h>
8
9int setjmp(struct jmp_buf_data *jmp_buf)
10{
11 printf("WARNING: setjmp() is not supported\n");
12
13 return 0;
14}
15
16void longjmp(struct jmp_buf_data *jmp_buf, int val)
17{
18 printf("WARNING: longjmp() is not supported\n");
19}