- GEt TCPIP building with msvc.
[reactos.git] / reactos / drivers / net / tcpip / tcpip / mockbug.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS TCP/IP protocol driver
4 * FILE: tcpip/bug.c
5 * PURPOSE: Bugcheck
6 * PROGRAMMERS: Art Yerkes
7 * REVISIONS:
8 */
9 #include "precomp.h"
10
11 VOID TcpipBugCheck( ULONG BugCode ) {
12 DbgPrint("BugCheck called: %x\n", BugCode);
13 ASSERT(0);
14 }