diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-11-30 00:41:36 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-11-30 00:41:36 -0500 |
commit | 4b36bef1b39f2e5c8dcc5fdc05218bbfccb08046 (patch) | |
tree | 202c5fdda591e1e817c3f747c624a9a950e52d8c /libdimension | |
parent | 96ec70f0376d5d83bbb1171db92bf1d883a33171 (diff) | |
download | dimension-4b36bef1b39f2e5c8dcc5fdc05218bbfccb08046.tar.xz |
Missing <pthread.h> include.
Diffstat (limited to 'libdimension')
-rw-r--r-- | libdimension/progress-impl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libdimension/progress-impl.h b/libdimension/progress-impl.h index bfb74f6..e9bfac6 100644 --- a/libdimension/progress-impl.h +++ b/libdimension/progress-impl.h @@ -26,6 +26,8 @@ #ifndef DIMENSION_IMPL_PROGRESS_H #define DIMENSION_IMPL_PROGRESS_H +#include <pthread.h> + /** Allocate a new progress object. */ dmnsn_progress *dmnsn_new_progress(void); |