Changeset b7fd2a0 in mainline for uspace/srv/net/tcp/tcp.c
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/tcp.c
r36f0738 rb7fd2a0 55 55 }; 56 56 57 static int tcp_init(void)57 static errno_t tcp_init(void) 58 58 { 59 int rc;59 errno_t rc; 60 60 61 61 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_init()"); … … 91 91 int main(int argc, char **argv) 92 92 { 93 int rc;93 errno_t rc; 94 94 95 95 printf(NAME ": TCP (Transmission Control Protocol) network module\n");
Note:
See TracChangeset
for help on using the changeset viewer.