mirror of
https://github.com/reactos/reactos.git
synced 2024-12-30 19:14:31 +00:00
- Use #include <xxx> for system include files instead of #include "xxx".
svn path=/trunk/; revision=10354
This commit is contained in:
parent
c7dda4d8da
commit
d6ee3ac209
1 changed files with 4 additions and 4 deletions
|
@ -24,8 +24,8 @@
|
|||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
#include "string.h"
|
||||
#include "stdlib.h"
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "wine/debug.h"
|
||||
#include "windef.h"
|
||||
|
@ -39,8 +39,8 @@
|
|||
#include "fdi.h"
|
||||
#include "wine/unicode.h"
|
||||
|
||||
#include "fcntl.h"
|
||||
#include "share.h"
|
||||
#include <fcntl.h>
|
||||
#include <share.h>
|
||||
|
||||
#include "wine/debug.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue