~jakub/helenos/ia64-revival

« back to all changes in this revision

Viewing changes to uspace/lib/c/include/setjmp.h

  • Committer: Jakub Jermar
  • Date: 2011-04-13 14:45:41 UTC
  • mfrom: (527.1.397 main-clone)
  • Revision ID: jakub@jermar.eu-20110413144541-x0j3r1zxqhsljx1o
MergeĀ mainlineĀ changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
typedef context_t jmp_buf;
41
41
 
42
42
extern int setjmp(jmp_buf env);
43
 
extern void longjmp(jmp_buf env,int val) __attribute__((__noreturn__));
 
43
extern void longjmp(jmp_buf env, int val) __attribute__((noreturn));
44
44
 
45
45
#endif
46
46