Changeset a070eff in mainline for uspace/lib/c/include/setjmp.h
- Timestamp:
- 2013-11-12T13:38:22Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4a3892b
- Parents:
- 9ed3e1a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/setjmp.h
r9ed3e1a ra070eff 1 1 /* 2 2 * Copyright (c) 2008 Josef Cejka 3 * Copyright (c) 2013 Vojtech Horky 3 4 * All rights reserved. 4 5 * … … 36 37 #define LIBC_SETJMP_H_ 37 38 38 #include <libarch/fibril.h> 39 40 typedef context_t jmp_buf[1]; 39 /* 40 * We hide the structure to allow smooth inclusion from libposix 41 * as no other types are necessary (and thus no includes are needed). 42 */ 43 struct jmp_buf_interal; 44 typedef struct jmp_buf_interal *jmp_buf; 41 45 42 46 extern int setjmp(jmp_buf env);
Note:
See TracChangeset
for help on using the changeset viewer.