mmalloc.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:2k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* MikMod sound library
  2. (c) 1998, 1999 Miodrag Vallat and others - see file AUTHORS for
  3. complete list.
  4. This library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of
  7. the License, or (at your option) any later version.
  8.  
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with this library; if not, write to the Free Software
  16. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  17. 02111-1307, USA.
  18. */
  19. /*==============================================================================
  20.   $Id: mmalloc.c,v 1.1.1.1 2004/01/21 01:36:35 raph Exp $
  21.   Dynamic memory routines
  22. ==============================================================================*/
  23. #ifdef HAVE_CONFIG_H
  24. #include "config.h"
  25. #endif
  26. #include "mikmod_internals.h"
  27. /* Same as malloc, but sets error variable _mm_error when fails */
  28. void* _mm_malloc(size_t size)
  29. {
  30. void *d;
  31. if(!(d=calloc(1,size))) {
  32. _mm_errno = MMERR_OUT_OF_MEMORY;
  33. if(_mm_errorhandler) _mm_errorhandler();
  34. }
  35. return d;
  36. }
  37. /* Same as calloc, but sets error variable _mm_error when fails */
  38. void* _mm_calloc(size_t nitems,size_t size)
  39. {
  40. void *d;
  41.    
  42. if(!(d=calloc(nitems,size))) {
  43. _mm_errno = MMERR_OUT_OF_MEMORY;
  44. if(_mm_errorhandler) _mm_errorhandler();
  45. }
  46. return d;
  47. }
  48. /* ex:set ts=4: */