Don't use *_t for our own typedefs

It's reserved by POSIX.

(closes #158 pull request)
This commit is contained in:
Keegan McAllister
2012-04-14 17:39:10 -04:00
committed by Keith Winstein
parent 937882caff
commit cd2d482484
8 changed files with 38 additions and 38 deletions
+2 -2
View File
@@ -34,8 +34,8 @@ namespace Terminal {
Terminal::Emulator terminal;
Terminal::Display display;
typedef std::list< std::pair<uint64_t, uint64_t> > input_history_t;
input_history_t input_history;
typedef std::list< std::pair<uint64_t, uint64_t> > input_history_type;
input_history_type input_history;
uint64_t echo_ack;
static const int ECHO_TIMEOUT = 50; /* for late ack */