* Slap *some* sense into our header inclusions.
[reactos.git] / reactos / base / applications / network / tracert / tracert.c
index e3c1048..4654ee1 100644 (file)
@@ -14,7 +14,6 @@
 CHAR cHostname[256];            // target hostname
 CHAR cDestIP[18];               // target IP
 
-
 static VOID
 DebugPrint(LPTSTR lpString, ...)
 {
@@ -28,7 +27,6 @@ DebugPrint(LPTSTR lpString, ...)
 #endif
 }
 
-
 static VOID
 Usage(VOID)
 {
@@ -47,7 +45,6 @@ Usage(VOID)
            "- For testing purposes, all should work as normal in a Windows environment\n\n"));
 }
 
-
 static BOOL
 ParseCmdline(int argc,
              LPCTSTR argv[],
@@ -101,7 +98,6 @@ ParseCmdline(int argc,
     return TRUE;
 }
 
-
 static WORD
 CheckSum(PUSHORT data,
          UINT size)
@@ -123,7 +119,6 @@ CheckSum(PUSHORT data,
     return (USHORT)(~dwSum);
 }
 
-
 static VOID
 SetupTimingMethod(PAPPINFO pInfo)
 {
@@ -148,7 +143,6 @@ SetupTimingMethod(PAPPINFO pInfo)
     }
 }
 
-
 static BOOL
 ResolveHostname(PAPPINFO pInfo)
 {
@@ -183,7 +177,6 @@ ResolveHostname(PAPPINFO pInfo)
     return TRUE;
 }
 
-
 static LONGLONG
 GetTime(PAPPINFO pInfo)
 {
@@ -205,7 +198,6 @@ GetTime(PAPPINFO pInfo)
     return (LONGLONG)Time.u.LowPart;
 }
 
-
 static BOOL
 SetTTL(SOCKET sock,
        INT iTTL)
@@ -223,7 +215,6 @@ SetTTL(SOCKET sock,
     return TRUE;
 }
 
-
 static BOOL
 CreateSocket(PAPPINFO pInfo)
 {
@@ -250,7 +241,6 @@ CreateSocket(PAPPINFO pInfo)
     return TRUE;
 }
 
-
 static VOID
 PreparePacket(PAPPINFO pInfo,
               USHORT iSeqNum)
@@ -267,7 +257,6 @@ PreparePacket(PAPPINFO pInfo,
                                                        sizeof(ICMP_HEADER) + PACKET_SIZE);
 }
 
-
 static INT
 SendPacket(PAPPINFO pInfo)
 {
@@ -308,7 +297,6 @@ SendPacket(PAPPINFO pInfo)
     return iSockRet;
 }
 
-
 static BOOL
 ReceivePacket(PAPPINFO pInfo)
 {
@@ -369,7 +357,6 @@ ReceivePacket(PAPPINFO pInfo)
     return bRet;
 }
 
-
 static INT
 DecodeResponse(PAPPINFO pInfo)
 {
@@ -410,7 +397,6 @@ DecodeResponse(PAPPINFO pInfo)
     return -3;
 }
 
-
 static BOOL
 AllocateBuffers(PAPPINFO pInfo)
 {
@@ -435,7 +421,6 @@ AllocateBuffers(PAPPINFO pInfo)
     return TRUE;
 }
 
-
 static INT
 Driver(PAPPINFO pInfo)
 {
@@ -575,7 +560,6 @@ Driver(PAPPINFO pInfo)
     return ret;
 }
 
-
 static VOID
 Cleanup(PAPPINFO pInfo)
 {
@@ -595,7 +579,6 @@ Cleanup(PAPPINFO pInfo)
                  pInfo->RecvPacket);
 }
 
-
 #if defined(_UNICODE) && defined(__GNUC__)
 static
 #endif
@@ -635,7 +618,6 @@ int _tmain(int argc, LPCTSTR argv[])
     return ret;
 }
 
-
 #if defined(_UNICODE) && defined(__GNUC__)
 /* HACK - MINGW HAS NO OFFICIAL SUPPORT FOR wmain()!!! */
 int main( int argc, char **argv )