Revision: 9249 https://osdn.net/projects/ttssh2/scm/svn/commits/9249 Author: nmaya Date: 2021-05-16 23:24:03 +0900 (Sun, 16 May 2021) Log Message: ----------- size_t を typedef しないようにした cf. ttssh2-devel 4897 Modified Paths: -------------- branches/ssh_chacha20poly1305/ttssh2/ttxssh/poly1305.h -------------- next part -------------- Modified: branches/ssh_chacha20poly1305/ttssh2/ttxssh/poly1305.h =================================================================== --- branches/ssh_chacha20poly1305/ttssh2/ttxssh/poly1305.h 2021-05-13 13:02:31 UTC (rev 9248) +++ branches/ssh_chacha20poly1305/ttssh2/ttxssh/poly1305.h 2021-05-16 14:24:03 UTC (rev 9249) @@ -10,9 +10,9 @@ #ifndef POLY1305_H #define POLY1305_H +#include <stdio.h> #include <sys/types.h> typedef unsigned char u_char; -typedef unsigned int size_t; typedef unsigned char uint8_t; typedef unsigned int uint32_t; typedef unsigned long long uint64_t;