blob: e722bf2b90a4cab23b8e89435f7f9f004c84f7dd (
plain)
1
2
3
4
5
6
7
|
#ifndef SOLV_XFOPEN_H
#define SOLV_XFOPEN_H
extern FILE *solv_xfopen(const char *fn, const char *mode);
extern FILE *solv_xfopen_fd(const char *fn, int fd, const char *mode);
#endif
|