diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-06-01 18:20:17 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-06-01 18:20:17 -0700 |
commit | 43872677a6ebdb038f1b8069fc0e54e7b513cc02 (patch) | |
tree | a3b676a3f31fdc8236704d0ee2369931f9df4b75 /extlinux | |
parent | 46ed7c28730aa551a6f36d7c0c4fb08012070cc9 (diff) | |
download | syslinux-43872677a6ebdb038f1b8069fc0e54e7b513cc02.tar.gz |
Remove unused set_8() function
Remove unused set_8() function, to keep gcc quiet.
Diffstat (limited to 'extlinux')
-rw-r--r-- | extlinux/extlinux.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/extlinux/extlinux.c b/extlinux/extlinux.c index d75505a7..a3d57bd2 100644 --- a/extlinux/extlinux.c +++ b/extlinux/extlinux.c @@ -187,11 +187,6 @@ static inline uint32_t get_32(const unsigned char *p) #endif } -static inline void set_8(unsigned char *p, uint8_t v) -{ - *(uint8_t *)p = v; -} - static inline void set_16(unsigned char *p, uint16_t v) { #if defined(__i386__) || defined(__x86_64__) |