Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
346 B

  1. // nomemory -- report out of memory
  2. #include <new>
  3. _STD_BEGIN
  4. _CRTIMP2 void __cdecl _Nomemory()
  5. { // report out of memory
  6. static const bad_alloc nomem;
  7. _RAISE(nomem);
  8. }
  9. _STD_END
  10. /*
  11. * Copyright (c) 1992-2001 by P.J. Plauger. ALL RIGHTS RESERVED.
  12. * Consult your license regarding permissions and restrictions.
  13. V3.10:0009 */