Juergen Gross, le lun. 27 nov. 2023 11:25:03 +0100, a ecrit:
> Add the needed instances of EXPORT_SYMBOL() to lib/xmalloc.c.
> 
> Signed-off-by: Juergen Gross <jgr...@suse.com>

Reviewed-by: Samuel Thibault <samuel.thiba...@ens-lyon.org>

> ---
> V3:
> - new patch
> ---
>  lib/xmalloc.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/lib/xmalloc.c b/lib/xmalloc.c
> index e16f161a..cc5db11e 100644
> --- a/lib/xmalloc.c
> +++ b/lib/xmalloc.c
> @@ -271,6 +271,7 @@ void *malloc(size_t size)
>  {
>      return _xmalloc(size, DEFAULT_ALIGN);
>  }
> +EXPORT_SYMBOL(malloc);
>  
>  void *realloc(void *ptr, size_t size)
>  {
> @@ -301,11 +302,13 @@ void *realloc(void *ptr, size_t size)
>  
>      return new;
>  }
> +EXPORT_SYMBOL(realloc);
>  
>  void free(void *ptr)
>  {
>      xfree(ptr);
>  }
> +EXPORT_SYMBOL(free);
>  #endif
>  
>  /*
> -- 
> 2.35.3
> 

-- 
Samuel
---
Pour une évaluation indépendante, transparente et rigoureuse !
Je soutiens la Commission d'Évaluation de l'Inria.

Reply via email to