mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 21:51:40 +03:00
Partial fixes for building phobos with -unittest.
This commit is contained in:
parent
c31f87641e
commit
e8f1af3923
2 changed files with 3 additions and 3 deletions
|
@ -55,8 +55,8 @@ struct lldiv_t { long quot,rem; }
|
||||||
int (*compare)(in void *elem1, in void *elem2)); /// ditto
|
int (*compare)(in void *elem1, in void *elem2)); /// ditto
|
||||||
|
|
||||||
char* getenv(const char*); ///
|
char* getenv(const char*); ///
|
||||||
int setenv(char*, char*, int); /// extension to ISO C standard, not available on all platforms
|
int setenv(const char*, const char*, int); /// extension to ISO C standard, not available on all platforms
|
||||||
void unsetenv(char*); /// extension to ISO C standard, not available on all platforms
|
void unsetenv(const char*); /// extension to ISO C standard, not available on all platforms
|
||||||
|
|
||||||
int rand(); ///
|
int rand(); ///
|
||||||
void srand(uint); /// ditto
|
void srand(uint); /// ditto
|
||||||
|
|
|
@ -123,6 +123,6 @@ printf("test2\n");
|
||||||
|
|
||||||
writefln(std.cpuid.toString());
|
writefln(std.cpuid.toString());
|
||||||
|
|
||||||
printf("Success\n!");
|
printf("Success!\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue