Commit 1de832c6 authored by Nick Mathewson's avatar Nick Mathewson 🦞
Browse files

Fix an msvc issue reported by Gisle Vanem; bump copyright date

parent caeb549d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
/* trunnel-impl.h -- Implementation helpers for trunnel, included by
 * generated trunnel files
 *
 * Copyright 2014, The Tor Project, Inc.
 * Copyright 2014-2015, The Tor Project, Inc.
 * See license at the end of this file for copying information.
 */

@@ -14,7 +14,7 @@
#include "trunnel-local.h"
#endif

#ifdef _MSC_VER
#if defined(_MSC_VER) && (_MSC_VER < 1600)
#define uint8_t unsigned char
#define uint16_t unsigned short
#define uint32_t unsigned int
+1 −1
Original line number Diff line number Diff line
/* trunnel.c -- Helper functions to implement trunnel.
 *
 * Copyright 2014, The Tor Project, Inc.
 * Copyright 2014-2015, The Tor Project, Inc.
 * See license at the end of this file for copying information.
 *
 * See trunnel-impl.h for documentation of these functions.
+1 −1
Original line number Diff line number Diff line
/* trunnel.h -- Public declarations for trunnel, to be included
 * in trunnel header files.

 * Copyright 2014, The Tor Project, Inc.
 * Copyright 2014-2015, The Tor Project, Inc.
 * See license at the end of this file for copying information.
 */