avr.h: Removed some unused prototypes

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@425 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Jan-Hinnerk Reichert 2004-07-05 14:10:15 +00:00
parent e14ffeda9d
commit 55e524871a
2 changed files with 3 additions and 12 deletions

View File

@ -1,3 +1,6 @@
2004-07-04 Jan-Hinnerk Reichert <hinni@despammed.com>
* avr.h: Removed some unused prototypes
2004-07-04 Jan-Hinnerk Reichert <hinni@despammed.com>
* stk500.c: Fixed fosc behaviour for values exceeding
maximum frequency (contributed by Galen Seitz)

View File

@ -25,7 +25,6 @@
#include <stdio.h>
#include "avrpart.h"
#include "lists.h"
#include "pgm.h"
@ -33,10 +32,6 @@
extern struct avrpart parts[];
int avr_txrx_bit(int fd, int bit);
unsigned char avr_txrx(int fd, unsigned char byte);
int avr_read_byte(PROGRAMMER * pgm, AVRPART * p, AVRMEM * mem,
unsigned long addr, unsigned char * value);
@ -54,15 +49,8 @@ int avr_write(PROGRAMMER * pgm, AVRPART * p, char * memtype, int size,
int avr_signature(PROGRAMMER * pgm, AVRPART * p);
char * avr_memtstr(int memtype);
int avr_initmem(AVRPART * p);
int avr_verify(AVRPART * p, AVRPART * v, char * memtype, int size);
void avr_mem_display(char * prefix, FILE * f, AVRMEM * m, int type,
int verbose);
int avr_get_cycle_count(PROGRAMMER * pgm, AVRPART * p, int * cycles);
int avr_put_cycle_count(PROGRAMMER * pgm, AVRPART * p, int cycles);;