summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-11-30 00:41:36 -0500
committerTavian Barnes <tavianator@gmail.com>2010-11-30 00:41:36 -0500
commit4b36bef1b39f2e5c8dcc5fdc05218bbfccb08046 (patch)
tree202c5fdda591e1e817c3f747c624a9a950e52d8c
parent96ec70f0376d5d83bbb1171db92bf1d883a33171 (diff)
downloaddimension-4b36bef1b39f2e5c8dcc5fdc05218bbfccb08046.tar.xz
Missing <pthread.h> include.
-rw-r--r--libdimension/progress-impl.h2
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);