Subversion Repositories Kolibri OS

Rev

Rev 9230 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdlib.h>
  3.  
  4. double atof(const char* ascii)
  5. {
  6.     return strtod(ascii, 0);
  7. }
  8.