URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [uClibc/] [libc/] [sysdeps/] [linux/] [e1/] [bits/] [setjmp.h] - Rev 1325
Go to most recent revision | Compare with Previous | Blame | View Log
/* This file is lisenced under LGPL. * Copyright (C) 2002-2003, George Thanos <george.thanos@gdt.gr> * Yannis Mitsos <yannis.mitsos@gdt.gr> */ #ifndef _SETJMP_H # error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead." #endif typedef struct { unsigned long G3; unsigned long G4; unsigned long SavedSP; unsigned long SavedPC; unsigned long SavedSR; unsigned long ReturnValue; } __jmp_buf[1];
Go to most recent revision | Compare with Previous | Blame | View Log