newlib: update

git-svn-id: svn://kolibrios.org@3900 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge)
2013-09-10 19:07:11 +00:00
parent 77fa251527
commit 2a2d8df30d
7 changed files with 381 additions and 142 deletions
@@ -292,7 +292,7 @@ typedef union
}ufile_t;
static inline ufile_t load_file(char *path)
static inline ufile_t load_file(const char *path)
{
ufile_t uf;
@@ -303,7 +303,7 @@ static inline ufile_t load_file(char *path)
return uf;
};
static inline int GetScreenSize()
{
@@ -394,7 +394,7 @@ void Blit(void *bitmap, int dst_x, int dst_y,
int src_x, int src_y, int w, int h,
int src_w, int src_h, int stride);
#endif