Include <string.h>, not "string.h". Also added include guards, which should be a big win on commonly included files like this one.

git-svn-id: svn://10.0.0.236/trunk@31565 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sfraser%netscape.com 1999-05-14 03:07:23 +00:00
parent df978824a7
commit c00e1eb8f1
3 changed files with 21 additions and 3 deletions

View File

@ -19,9 +19,15 @@
#ifndef nsID_h__
#define nsID_h__
#include <string.h>
#ifndef prtypes_h___
#include "prtypes.h"
#include "string.h"
#endif
#ifndef nsCom_h__
#include "nsCom.h"
#endif
/**
* A "unique identifier". This is modeled after OSF DCE UUIDs.

View File

@ -19,9 +19,15 @@
#ifndef nsID_h__
#define nsID_h__
#include <string.h>
#ifndef prtypes_h___
#include "prtypes.h"
#include "string.h"
#endif
#ifndef nsCom_h__
#include "nsCom.h"
#endif
/**
* A "unique identifier". This is modeled after OSF DCE UUIDs.

View File

@ -19,9 +19,15 @@
#ifndef nsID_h__
#define nsID_h__
#include <string.h>
#ifndef prtypes_h___
#include "prtypes.h"
#include "string.h"
#endif
#ifndef nsCom_h__
#include "nsCom.h"
#endif
/**
* A "unique identifier". This is modeled after OSF DCE UUIDs.