This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "C-Utils Repository". The branch, master has been updated via aa01f6f32835adb1f8ef1ab593c74e452449430f (commit) from e4d1f589cf370787f8d62aedf5887251c0d0ab81 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit aa01f6f32835adb1f8ef1ab593c74e452449430f Author: Phil Carns <[email protected]> Date: Mon Mar 26 14:26:40 2012 -0400 untangling some headers in c-utils ----------------------------------------------------------------------- Summary of changes: triton-list.h | 3 ++- triton-string.h | 5 +++++ triton-thread.h | 2 -- 3 files changed, 7 insertions(+), 3 deletions(-) Diff of changes: diff --git a/triton-list.h b/triton-list.h index 608c9d9..1897491 100644 --- a/triton-list.h +++ b/triton-list.h @@ -1,7 +1,8 @@ #ifndef __TRITON_LIST_H__ #define __TRITON_LIST_H__ -#include "triton-base.h" +#include <stdint.h> +#include <assert.h> typedef struct triton_list triton_list_t; diff --git a/triton-string.h b/triton-string.h index e8b7179..511662f 100644 --- a/triton-string.h +++ b/triton-string.h @@ -1,6 +1,11 @@ #ifndef __TRITON_STRING_H__ #define __TRITON_STRING_H__ +#include <stdarg.h> +#include <stdlib.h> +#include <string.h> +#include <assert.h> + #include "jenkins-hash.h" #include "triton-thread.h" diff --git a/triton-thread.h b/triton-thread.h index bf14f61..73c0dd2 100644 --- a/triton-thread.h +++ b/triton-thread.h @@ -1,8 +1,6 @@ #ifndef __TRITON_THREAD_H__ #define __TRITON_THREAD_H__ -#include "triton-base.h" - #ifdef __TRITON_POSIX_LOCKING__ #include <pthread.h> hooks/post-receive -- C-Utils Repository