Changeset fa0fc6 in git
- Timestamp:
- Aug 29, 2012, 12:26:24 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'ad2543eab51733612ba7d118afc77edca719600e')
- Children:
- fd201f7db7b17b257e7b311d82e82a23c2ee25ac
- Parents:
- 39401391ee86c906c92f41d5e14ecc503d181b92
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-08-29 12:26:24+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-09-07 19:51:24+02:00
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/singext.h
r3940139 rfa0fc6 9 9 #include <factory/cf_gmp.h> 10 10 11 extern FILE * feFopen ( const char * path, const char * mode); 11 #include <findexec/feFopen.h> 12 12 13 13 /*BEGINPUBLIC*/ -
factory/test.cc
r3940139 rfa0fc6 1 1 #include <factory/factory.h> 2 #include <findexec/feFopen.h> 2 3 3 4 int mmInit(void) { … … 14 15 Expected in: flat namespace 15 16 */ 16 extern FILE * feFopen ( const char * path, const char * mode);17 17 const int f = (int)(long)(void*)feFopen; 18 18 return (f ^ f) + 1; -
findexec/feFopen.cc
r3940139 rfa0fc6 151 151 } 152 152 153 FILE * feFopen(const char *path, const char *mode)154 {155 return feFopen (path, mode, 0,0,0);156 }157 158 153 // Make sure that mode contains binary option 159 154 FILE* myfopen(const char *path, const char *mode) -
findexec/feFopen.h
r3940139 rfa0fc6 9 9 #ifdef __cplusplus 10 10 11 FILE*feFopen(const char *path, const char *mode, char *where, short useWerror=0, short path_only=0); 12 FILE*feFopen(const char *path, const char *mode); 11 #include <stdio.h> 12 13 FILE*feFopen(const char *path, const char *mode, char *where=0, short useWerror=0, short path_only=0); 14 13 15 /* 14 16 // These are our versions of fopen and fread They are very similar to … … 19 21 // do never use fopen and fread 20 22 */ 21 22 23 FILE *myfopen(const char *path, const char *mode); 23 24 24 size_t myfread(void *ptr, size_t size, size_t nmemb, FILE *stream); 25 25
Note: See TracChangeset
for help on using the changeset viewer.