edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Option.c:

Comment out unused STATIC function. (TcpPutUint16)


git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4828 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jljusten 2008-03-11 17:47:00 +00:00
parent 24e58768a0
commit cf26afe34c
1 changed files with 10 additions and 10 deletions

View File

@ -33,16 +33,16 @@ TcpGetUint16 (
return NTOHS (Value);
}
STATIC
VOID
TcpPutUint16 (
IN UINT8 *Buf,
IN UINT16 Data
)
{
Data = HTONS (Data);
CopyMem (Buf, &Data, sizeof (UINT16));
}
// STATIC
// VOID
// TcpPutUint16 (
// IN UINT8 *Buf,
// IN UINT16 Data
// )
// {
// Data = HTONS (Data);
// CopyMem (Buf, &Data, sizeof (UINT16));
// }
STATIC
UINT32