newlib: update

git-svn-id: svn://kolibrios.org@5141 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge)
2014-09-24 10:20:09 +00:00
parent 5d2391c32e
commit 5a61e87775
8 changed files with 159 additions and 10 deletions

View File

@@ -5,6 +5,10 @@
#include <stdint.h>
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
//#ifdef CONFIG_DEBUF
// #define DBG(format,...) printf(format,##__VA_ARGS__)
//#else
@@ -440,7 +444,7 @@ struct blit_call
int srcw;
int srch;
unsigned char *bitmap;
void *bitmap;
int stride;
};
@@ -466,6 +470,11 @@ static inline void Blit(void *bitmap, int dst_x, int dst_y,
::"a"(73),"b"(0),"c"(&bc.dstx));
};
#ifdef __cplusplus
}
#endif
#endif