Include inttypes.h instead of stdint.h to unbreak beos.

Hopefully this won't break anything.
This commit is contained in:
Josh Elsasser 2007-08-04 00:43:47 +00:00
parent 4986164148
commit b46052826c
3 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@
#endif
#ifdef SYS_BEOS
#include <stdint.h>
#include <inttypes.h>
typedef uint32_t socklen_t;
#endif

View File

@ -42,7 +42,7 @@
#else
#include <stdint.h>
#include <inttypes.h>
#define SHA1_OUTPUT_SIZE 20 /* in bytes */
typedef struct sha1_state_s sha1_state_t;

View File

@ -25,8 +25,8 @@
#ifndef TR_UTILS_H
#define TR_UTILS_H 1
#include <inttypes.h>
#include <stdarg.h>
#include <stdint.h>
void tr_msgInit( void );