| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /************************************************************
- * * Hyphenate CONFIDENTIAL
- * __________________
- * Copyright (C) 2016 Hyphenate Inc. All rights reserved.
- *
- * NOTICE: All information contained herein is, and remains
- * the property of Hyphenate Inc.
- * Dissemination of this information or reproduction of this material
- * is strictly forbidden unless prior written permission is obtained
- * from Hyphenate Inc.
- */
- #include <stdio.h>
- #include <unistd.h>
- #include <string.h>
- #include <stdlib.h>
- FILE *fopen$UNIX2003( const char *filename, const char *mode )
- {
- return fopen(filename, mode);
- }
- int fputs$UNIX2003(const char *res1, FILE *res2){
- return fputs(res1,res2);
- }
- int nanosleep$UNIX2003(int val){
- return usleep(val);
- }
- char* strerror$UNIX2003(int errornum){
- return strerror(errornum);
- }
- double strtod$UNIX2003(const char *nptr, char **endptr){
- return strtod(nptr, endptr);
- }
- size_t fwrite$UNIX2003( const void *a, size_t b, size_t c, FILE *d )
- {
- return fwrite(a, b, c, d);
- }
|