Don't use types that require other headers.

This commit is contained in:
Jake Burkholder 2001-09-30 18:52:17 +00:00
parent 6df08a9593
commit b71c31cefa
2 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ typedef long sig_atomic_t;
#define MINSIGSTKSZ (1024 * 4)
typedef u_int osigset_t;
typedef int osigset_t;
struct osigcontext {
};

View File

@ -33,8 +33,8 @@
#define _MACHINE_UCONTEXT_H_
typedef struct __mcontext {
u_long mc_global[8];
u_long mc_out[8];
long mc_global[8];
long mc_out[8];
long mc_onstack;
long mc_sp;
long mc_tpc;