Skip to content

Commit b6a9c38

Browse files
author
Andras Fekete
committed
Addressing PR comments
1 parent 101088c commit b6a9c38

14 files changed

Lines changed: 20 additions & 1 deletion

File tree

IDE/CRYPTOCELL/user_settings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,7 @@ extern "C" {
401401

402402
/* prototypes for user heap override functions */
403403
/* Note: Realloc only required for normal math */
404+
/* Note2: XFREE(NULL) must be properly handled */
404405
#include <stddef.h> /* for size_t */
405406
extern void *myMalloc(size_t n, void* heap, int type);
406407
extern void myFree(void *p, void* heap, int type);

IDE/GCC-ARM/Header/user_settings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ extern "C" {
419419

420420
/* prototypes for user heap override functions */
421421
/* Note: Realloc only required for normal math */
422+
/* Note2: XFREE(NULL) must be properly handled */
422423
#include <stddef.h> /* for size_t */
423424
extern void *myMalloc(size_t n, void* heap, int type);
424425
extern void myFree(void *p, void* heap, int type);

IDE/NETOS/user_settings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -410,6 +410,7 @@ extern "C" {
410410

411411
/* prototypes for user heap override functions */
412412
/* Note: Realloc only required for normal math */
413+
/* Note2: XFREE(NULL) must be properly handled */
413414
#include <stddef.h> /* for size_t */
414415
extern void *myMalloc(size_t n, void* heap, int type);
415416
extern void myFree(void *p, void* heap, int type);

IDE/RISCV/SIFIVE-HIFIVE1/user_settings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,7 @@ extern "C" {
397397

398398
/* prototypes for user heap override functions */
399399
/* Note: Realloc only required for normal math */
400+
/* Note2: XFREE(NULL) must be properly handled */
400401
#include <stddef.h> /* for size_t */
401402
extern void *myMalloc(size_t n, void* heap, int type);
402403
extern void myFree(void *p, void* heap, int type);

IDE/STARCORE/user_settings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,7 @@ extern "C" {
417417

418418
/* prototypes for user heap override functions */
419419
/* Note: Realloc only required for normal math */
420+
/* Note2: XFREE(NULL) must be properly handled */
420421
#include <stddef.h> /* for size_t */
421422
extern void *myMalloc(size_t n, void* heap, int type);
422423
extern void myFree(void *p, void* heap, int type);

IDE/SimplicityStudio/user_settings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,7 @@ extern "C" {
337337

338338
/* prototypes for user heap override functions */
339339
/* Note: Realloc only required for normal math */
340+
/* Note2: XFREE(NULL) must be properly handled */
340341
#include <stddef.h> /* for size_t */
341342
extern void *myMalloc(size_t n, void* heap, int type);
342343
extern void myFree(void *p, void* heap, int type);

IDE/WICED-STUDIO/user_settings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,7 @@ extern "C" {
411411

412412
/* prototypes for user heap override functions */
413413
/* Note: Realloc only required for normal math */
414+
/* Note2: XFREE(NULL) must be properly handled */
414415
#include <stddef.h> /* for size_t */
415416
extern void *myMalloc(size_t n, void* heap, int type);
416417
extern void myFree(void *p, void* heap, int type);

IDE/WINCE/user_settings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -491,6 +491,7 @@ extern "C" {
491491

492492
/* prototypes for user heap override functions */
493493
/* Note: Realloc only required for normal math */
494+
/* Note2: XFREE(NULL) must be properly handled */
494495
#include <stddef.h> /* for size_t */
495496
extern void *myMalloc(size_t n, void* heap, int type);
496497
extern void myFree(void *p, void* heap, int type);

IDE/XCODE-FIPSv2/macOS-C++/Intel/user_settings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,7 @@ extern "C" {
407407

408408
/* prototypes for user heap override functions */
409409
/* Note: Realloc only required for normal math */
410+
/* Note2: XFREE(NULL) must be properly handled */
410411
#include <stddef.h> /* for size_t */
411412
extern void *myMalloc(size_t n, void* heap, int type);
412413
extern void myFree(void *p, void* heap, int type);

IDE/XCODE-FIPSv2/macOS-C++/M1/user_settings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,7 @@ extern "C" {
418418

419419
/* prototypes for user heap override functions */
420420
/* Note: Realloc only required for normal math */
421+
/* Note2: XFREE(NULL) must be properly handled */
421422
#include <stddef.h> /* for size_t */
422423
extern void *myMalloc(size_t n, void* heap, int type);
423424
extern void myFree(void *p, void* heap, int type);

0 commit comments

Comments
 (0)