Remove need for inttypes.h.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@188 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
troth 2003-02-12 17:47:47 +00:00
parent 0ac9932d83
commit 0d58d31f3a
1 changed files with 1 additions and 2 deletions

View File

@ -36,7 +36,6 @@
#include <errno.h>
#include <termios.h>
#include <sys/time.h>
#include <inttypes.h>
#include "avr.h"
#include "pgm.h"
@ -680,7 +679,7 @@ void stk500_close(PROGRAMMER * pgm)
}
static int stk500_loadaddr(PROGRAMMER * pgm, uint16_t addr)
static int stk500_loadaddr(PROGRAMMER * pgm, unsigned int addr)
{
unsigned char buf[16];
int tries;