Blame win/win.c

Packit 022b05
/*
Packit 022b05
 * win.c --
Packit 022b05
 *
Packit 022b05
 *      Some helper functions to make this compile with vc++ for win32
Packit 022b05
 *
Packit 022b05
 * Copyright (c) 2000 E. Schoenfelder, Gaertner Datensysteme Braunschweig.
Packit 022b05
 * Copyright (c) 2000 J. Schoenwaelder, Technical University of Braunschweig.
Packit 022b05
 *
Packit 022b05
 * See the file "COPYING" for information on usage and redistribution
Packit 022b05
 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Packit 022b05
 *
Packit 022b05
 * @(#) $Id: win.c 1107 2001-03-08 14:49:09Z schoenw $
Packit 022b05
 */
Packit 022b05
Packit 022b05
#include <stdio.h>
Packit 022b05
#include <io.h>
Packit 022b05
#include <fcntl.h>
Packit 022b05
#include <string.h>
Packit 022b05
#include <ctype.h>
Packit 022b05
#include <memory.h>
Packit 022b05
Packit 022b05
#include "win.h"
Packit 022b05
Packit 022b05
/*
Packit 022b05
 * There are currently no Win32 specific compatibility functions since
Packit 022b05
 * we replaced the getopt option parser with another option parser
Packit 022b05
 * implementation. But we will keep this file around since I am sure
Packit 022b05
 * we will need it again at some point in time.
Packit 022b05
 */