Delete "ghost" old(*) files that have been mysteriously added back during the SVN...
[reactos.git] / dll / win32 / ws2_32 / misc / bsd.c
diff --git a/dll/win32/ws2_32/misc/bsd.c b/dll/win32/ws2_32/misc/bsd.c
deleted file mode 100644 (file)
index bb14c81..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * COPYRIGHT:   See COPYING in the top level directory
- * PROJECT:     ReactOS WinSock 2 DLL
- * FILE:        dll/win32/ws2_32/misc/bsd.c
- * PURPOSE:     Legacy BSD sockets APIs
- * PROGRAMMERS: Casper S. Hornstrup (chorns@users.sourceforge.net)
- * REVISIONS:
- *   CSH 15/06-2001 Created
- */
-
-#include "ws2_32.h"
-
-/*
- * @implemented
- */
-ULONG
-EXPORT
-htonl(IN ULONG hostlong)
-{
-    return DH2N(hostlong);
-}
-
-
-/*
- * @implemented
- */
-USHORT
-EXPORT
-htons(IN USHORT hostshort)
-{
-    return WH2N(hostshort);
-}
-
-
-/*
- * @implemented
- */
-ULONG
-EXPORT
-ntohl(IN ULONG netlong)
-{
-    return DN2H(netlong);
-}
-
-
-/*
- * @implemented
- */
-USHORT
-EXPORT
-ntohs(IN USHORT netshort)
-{
-    return WN2H(netshort);
-}
-
-/* EOF */