From c1d2e4e4deaa5d5df19171539a30c13fc43b7a6f Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Sat, 6 Oct 2001 03:14:42 +0000 Subject: Danilo also says we can get rid of _MSDOS (Win16) tests, and explicit FAR/NEAR specs git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13786 dc483132-0cff-0310-8789-dd5450dbe970 --- src/windows/cns/ChangeLog | 4 ++++ src/windows/cns/cns.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'src/windows/cns') diff --git a/src/windows/cns/ChangeLog b/src/windows/cns/ChangeLog index b420e42d56..626e52a2ac 100644 --- a/src/windows/cns/ChangeLog +++ b/src/windows/cns/ChangeLog @@ -1,3 +1,7 @@ +2001-10-03 Ken Raeburn + + * cns.c: Don't declare pointers or functions FAR any more. + 2000-05-08 Ken Raeburn Nalin Dahyabhai diff --git a/src/windows/cns/cns.c b/src/windows/cns/cns.c index 512f2f5c36..49aaa23016 100644 --- a/src/windows/cns/cns.c +++ b/src/windows/cns/cns.c @@ -1916,9 +1916,9 @@ krb_gethostbyname_wnd_proc(HWND hwnd, UINT message, * the async routines to emulate the functionality of the synchronous * routines */ -struct hostent FAR *PASCAL FAR +struct hostent *PASCAL krb_gethostbyname( - const char FAR *name) + const char *name) { HWND hwnd; char buf[MAXGETHOSTSTRUCT]; -- cgit