Welcome to mirror list, hosted at ThFree Co, Russian Federation.

custom_file.h « sys « spu « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60c0d2309ef90a55c1bb3c1320d001bd82683d56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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__ */