mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
oss: Mark loadhex static in hex2hex.c
Nothing outside of hex2hex.c references loadhex. Signed-off-by: Josh Triplett <josh@joshtriplett.org>
This commit is contained in:
parent
5ccd991548
commit
e8e63cbf9a
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
||||||
#define MAX_SIZE (256*1024)
|
#define MAX_SIZE (256*1024)
|
||||||
unsigned char buf[MAX_SIZE];
|
unsigned char buf[MAX_SIZE];
|
||||||
|
|
||||||
int loadhex(FILE *inf, unsigned char *buf)
|
static int loadhex(FILE *inf, unsigned char *buf)
|
||||||
{
|
{
|
||||||
int l=0, c, i;
|
int l=0, c, i;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue