mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
14 lines
218 B
C
14 lines
218 B
C
#ifndef __CUSTOM_FILE_H__
|
|
#define __CUSTOM_FILE_H__ 1
|
|
|
|
/*
|
|
* Cell SPE support
|
|
*/
|
|
struct __sFILE_spu {
|
|
int _fp; /* pseudo FILE pointer on PPE */
|
|
};
|
|
typedef struct __sFILE_spu __FILE;
|
|
|
|
#endif /* __CUSTOM_FILE_H__ */
|
|
|