Changeset 59a62bd in git for libpolys/resources
- Timestamp:
- Apr 21, 2011, 1:36:15 PM (13 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- ae85a3d8eb93a191e0a73a7e20df16f676bd1e8e
- Parents:
- 01c1d069f5dba6492844972482dfe1d144a97800
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-04-21 13:36:15+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:24+01:00
- Location:
- libpolys/resources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/resources/feResource.cc
r01c1d0 r59a62bd 14 14 #include <misc/auxiliary.h> 15 15 16 #include <resources/feResource.h> 17 16 #include "feResource.h" 17 18 19 // the following is needed due to 'program_invocation_name' 20 #define _GNU_SOURCE 21 #include <errno.h> 18 22 19 23 … … 175 179 void feInitResources(char* argv0) 176 180 { 181 if (argv0==NULL) 182 { 183 argv0 = program_invocation_name; 184 } 185 177 186 #if defined(ix86_Win) && defined(__GNUC__) 178 187 if (cygwin32_posix_path_list_p (getenv("PATH"))) -
libpolys/resources/feResource.h
r01c1d0 r59a62bd 37 37 // This needs to be called before the first call to feResource 38 38 // Initializes Resources, SearchPath, and extends PATH 39 void feInitResources(char* argv0 );39 void feInitResources(char* argv0 = NULL); 40 40 // Re-inits resources, should be called after changing env. variables 41 41 void feReInitResources();
Note: See TracChangeset
for help on using the changeset viewer.