- Move from using include guards to pragma once.

- Whilst this is non-standard and potentially makes the code less portable, it's supported by both gcc and msvc and should bringg increased compilation speed due to its optimized behaviour (doesn't need to invoke the preprocessor)
- Patch by Amine Khaldi [amine.khaldi@reactos.org]

svn path=/trunk/; revision=45685
This commit is contained in:
Ged Murphy 2010-02-26 11:43:19 +00:00
parent e9e9e2bd0e
commit c5b25b8e9b
656 changed files with 725 additions and 2796 deletions

View file

@ -14,8 +14,8 @@
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
*/
#ifndef _LINUX_TCP_H
#define _LINUX_TCP_H
#pragma once
#include "linux.h"
@ -183,5 +183,3 @@ struct tcp_info
__u32 tcpi_advmss;
__u32 tcpi_reordering;
};
#endif /* _LINUX_TCP_H */