~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to system/include/libc/setjmp.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
        setjmp.h
 
3
        stubs for future use.
 
4
*/
 
5
 
 
6
#ifndef _SETJMP_H_
 
7
#define _SETJMP_H_
 
8
 
 
9
#include "_ansi.h"
 
10
#include <machine/setjmp.h>
 
11
 
 
12
_BEGIN_STD_C
 
13
 
 
14
void    _EXFUN(longjmp,(jmp_buf __jmpb, int __retval));
 
15
int     _EXFUN(setjmp,(jmp_buf __jmpb));
 
16
 
 
17
_END_STD_C
 
18
 
 
19
#endif /* _SETJMP_H_ */
 
20