ICU-7673 Fix to use #include "" for ICU includes, reorder as necessary

X-SVN-Rev: 28047
This commit is contained in:
Peter Edberg 2010-05-11 06:08:15 +00:00
parent 3f850eeea7
commit e2d45f564f
3 changed files with 8 additions and 9 deletions

View File

@ -175,10 +175,10 @@
/* ------------------------------------------------------------------ */
#include <stdlib.h> /* for malloc, free, etc. */
#include <cmemory.h> /* for uprv_malloc, etc., in ICU */
/* #include <stdio.h> */ /* for printf [if needed] */
#include <string.h> /* for strcpy */
#include <ctype.h> /* for lower */
#include "cmemory.h" /* for uprv_malloc, etc., in ICU */
#include "decNumber.h" /* base number library */
#include "decNumberLocal.h" /* decNumber local types, etc. */

View File

@ -15,8 +15,8 @@
#ifndef _REGEXTXT_H
#define _REGEXTXT_H
#include <unicode/utypes.h>
#include <unicode/utext.h>
#include "unicode/utypes.h"
#include "unicode/utext.h"
U_NAMESPACE_BEGIN

View File

@ -8,15 +8,14 @@
*
************************************************************************/
#include "unicode/utypes.h"
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unicode/utext.h>
#include <unicode/utf8.h>
#include <unicode/ustring.h>
#include <unicode/uchriter.h>
#include "unicode/utypes.h"
#include "unicode/utext.h"
#include "unicode/utf8.h"
#include "unicode/ustring.h"
#include "unicode/uchriter.h"
#include "utxttest.h"
static UBool gFailed = FALSE;