From d23c66b04124432561771c95cebc8dd324d035c5 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Tue, 9 Dec 2003 21:37:26 +0000 Subject: make the license explicit on fakepoll.[ch] svn:r895 --- src/common/fakepoll.c | 12 +++++------- src/common/fakepoll.h | 16 ++++++---------- 2 files changed, 11 insertions(+), 17 deletions(-) diff --git a/src/common/fakepoll.c b/src/common/fakepoll.c index e16f2177ea..4e512195a9 100644 --- a/src/common/fakepoll.c +++ b/src/common/fakepoll.c @@ -1,10 +1,8 @@ -/* - * fakepoll.c - * - * On systems where 'poll' doesn't exist, fake it with 'select'. - * - * Nick Mathewson - */ +/* Copyright 2002,2003 Nick Mathewson, Roger Dingledine, Naval Research Lab. */ +/* See LICENSE for licensing information */ +/* $Id$ */ + +/* On systems where 'poll' doesn't exist, fake it with 'select'. */ #include "orconfig.h" #include "fakepoll.h" diff --git a/src/common/fakepoll.h b/src/common/fakepoll.h index 353e11ee4e..b38e4ef057 100644 --- a/src/common/fakepoll.h +++ b/src/common/fakepoll.h @@ -1,10 +1,6 @@ -/* - * fakepoll.h - * - * On systems where 'poll' doesn't exist, fake it with 'select'. - * - * Nick Mathewson - */ +/* Copyright 2002,2003 Nick Mathewson, Roger Dingledine, Naval Research Lab. */ +/* See LICENSE for licensing information */ +/* $Id$ */ #ifndef __FAKEPOLL_H #define __FAKEPOLL_H @@ -16,9 +12,9 @@ #define USE_FAKE_POLL struct pollfd { - int fd; - short events; - short revents; + int fd; + short events; + short revents; }; #define POLLIN 0x0001 -- cgit v1.2.3-54-g00ecf