ソースを参照

[libc] Mark setjmp and longjmp as __cdecl

tags/v0.9.4
Daniel Verkamp 16年前
コミット
179fa70d34
1個のファイルの変更2行の追加2行の削除
  1. 2
    2
      src/arch/i386/include/setjmp.h

+ 2
- 2
src/arch/i386/include/setjmp.h ファイルの表示

@@ -6,7 +6,7 @@
6 6
 #define JBLEN 6
7 7
 typedef unsigned long jmp_buf[JBLEN];
8 8
 
9
-extern int setjmp (jmp_buf env);
10
-extern void longjmp (jmp_buf env, int val);
9
+extern int __cdecl setjmp (jmp_buf env);
10
+extern void __cdecl longjmp (jmp_buf env, int val);
11 11
 
12 12
 #endif /* ETHERBOOT_SETJMP_H */

読み込み中…
キャンセル
保存