blob: e7c035be55e85dee8ee574c3d356bb4147adbcec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _USR_FETCH_H
#define _USR_FETCH_H
/**
* @file
*
* Fetch file as executable/loadable image
*
*/
extern int fetch ( struct image *image, const char *filename );
#endif /* _USR_FETCH_H */
|