# HG changeset patch # User Richard Laager # Date 1125379290 0 # Node ID 26e316f9e1368ce1314bebff4d20ca4be5a55b0c # Parent 2cb95478ef9c1309773b371574e00aad452b5a29 [gaim-migrate @ 13592] Removing the assert.h includes. They're unused. committer: Tailor Script diff -r 2cb95478ef9c -r 26e316f9e136 src/protocols/zephyr/ZMakeAscii.c --- a/src/protocols/zephyr/ZMakeAscii.c Tue Aug 30 05:21:09 2005 +0000 +++ b/src/protocols/zephyr/ZMakeAscii.c Tue Aug 30 05:21:30 2005 +0000 @@ -9,7 +9,6 @@ */ #include "internal.h" -#include static char *itox_chars = "0123456789ABCDEF"; diff -r 2cb95478ef9c -r 26e316f9e136 src/protocols/zephyr/ZReadAscii.c --- a/src/protocols/zephyr/ZReadAscii.c Tue Aug 30 05:21:09 2005 +0000 +++ b/src/protocols/zephyr/ZReadAscii.c Tue Aug 30 05:21:30 2005 +0000 @@ -9,7 +9,6 @@ */ #include "internal.h" -#include #define Z_cnvt_xtoi(c) ((temp=(c)-'0'),(temp<10)?temp:((temp-='A'-'9'-1),(temp<16)?temp:-1))