~ubuntu-branches/ubuntu/trusty/gnustep-base/trusty

« back to all changes in this revision

Viewing changes to Tools/xmlparse.m

Tags: upstream-1.20.0
ImportĀ upstreamĀ versionĀ 1.20.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
   */
22
22
 
23
 
#include "config.h"
24
23
#include <stdio.h>
25
 
#ifdef NeXT_Foundation_LIBRARY
26
 
#include <Foundation/Foundation.h>
27
 
#include <GNUstepBase/GSCategories.h>
28
 
#else
29
 
#include <Foundation/NSArray.h>
30
 
#include <Foundation/NSAutoreleasePool.h>
31
 
#include <Foundation/NSObjCRuntime.h>
32
 
#include <Foundation/NSProcessInfo.h>
33
 
#endif
34
 
#include <GNUstepBase/GSXML.h>
 
24
 
 
25
#import "common.h"
 
26
#import "Foundation/NSArray.h"
 
27
#import "Foundation/NSAutoreleasePool.h"
 
28
#import "Foundation/NSPathUtilities.h"
 
29
#import "Foundation/NSProcessInfo.h"
 
30
#import "Foundation/NSUserDefaults.h"
 
31
#import "GNUstepBase/Additions.h"
35
32
 
36
33
@interface GSXMLParser (Loader)
37
34
+ (NSString*) loadEntity: (NSString*)publicId
73
70
  CREATE_AUTORELEASE_POOL(pool);
74
71
 
75
72
#ifdef GS_PASS_ARGUMENTS
76
 
  [NSProcessInfo initializeWithArguments: argv count: argc environment: env];
 
73
  GSInitializeProcess(argc, argv, env);
77
74
#endif
78
75
 
79
76
#ifndef HAVE_LIBXML