]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/ibl.git/blobdiff - src/iblloc.h
Bug fix for automatic file format detection
[keystone-rtos/ibl.git] / src / iblloc.h
index 02d28e2d12afd9b2d8a0a4736c866eeab6855f6f..62d1e045e72706bde295edc284e73d575a537688 100644 (file)
@@ -73,6 +73,11 @@ typedef struct BOOT_MODULE_FXN_TABLE
 /* Prototypes */
 Uint32 iblBoot (BOOT_MODULE_FXN_TABLE *bootFxn, int32 dataFormat, void *formatParams);
 
+/* Stdlibs referenced through functions to use a single copy in the two stage boot */
+void *iblMalloc (Uint32 size);
+void  iblFree   (void *mem);
+void *iblMemset (void *mem, Int32 ch, Uint32 n);
+void *iblMemcpy (void *s1, const void *s2, Uint32 n);
 
 /* squash printfs */
 void mprintf(char *x, ...);