Make utils/ stuff *actually* compile this time.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@258674 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jason Parker
2010-04-22 22:10:17 +00:00
parent 6915f50dd3
commit 81ec31afbb
2 changed files with 3 additions and 1 deletions

View File

@@ -2821,6 +2821,7 @@ static struct timeval tvfix(struct timeval a)
return a;
}
struct timeval ast_tvadd(struct timeval a, struct timeval b);
struct timeval ast_tvadd(struct timeval a, struct timeval b)
{
/* consistency checks to guarantee usec in 0..999999 */
@@ -2835,6 +2836,7 @@ struct timeval ast_tvadd(struct timeval a, struct timeval b)
return a;
}
struct timeval ast_tvsub(struct timeval a, struct timeval b);
struct timeval ast_tvsub(struct timeval a, struct timeval b)
{
/* consistency checks to guarantee usec in 0..999999 */