diff options
author | Christophe Fergeau <cfergeau@redhat.com> | 2011-04-30 19:27:58 +0200 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2011-05-23 18:13:51 +0200 |
commit | 71330dbe04aca39fc211dc0536bda75166d0801e (patch) | |
tree | b253aa88a085b5f37210f793e112d70ec3f5b330 | |
parent | ab8e47099fd683aff0a477508588757f513c1f09 (diff) |
include stddef.h in continuation.h
It uses size_t so it needs it to get a definition for this type.
If it's not there, this causes build breakage on OS X
-rw-r--r-- | gtk/continuation.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/continuation.h b/gtk/continuation.h index 585788e..87cd4ee 100644 --- a/gtk/continuation.h +++ b/gtk/continuation.h @@ -21,6 +21,7 @@ #ifndef _CONTINUATION_H_ #define _CONTINUATION_H_ +#include <stddef.h> #include <ucontext.h> struct continuation |