use <inttypes.h> instead of <stdint.h> because the latter

does not exist on Solaris 8 and 9
This commit is contained in:
Duncan Laurie 2004-03-03 21:23:20 +00:00
parent eb116adf53
commit 6e5cdb2c20
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
#include <signal.h>
#include <ipmitool/helper.h>

View File

@ -40,7 +40,7 @@
#include <sys/ioctl.h>
#include <errno.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#include <string.h>
#include <sys/types.h>
#include <sys/poll.h>