mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-30 00:08:30 +00:00
Improve redbean
- Improve serialization - Add Benchmark() API to redbean - Refactor UNIX API to be assert() friendly - Make the redbean Lua REPL print data structures - Fix recent regressions in linenoise reverse search - Add -i flag so redbean can be a language interpreter
This commit is contained in:
parent
2046c0d2ae
commit
451e3f73d9
74 changed files with 1781 additions and 1024 deletions
|
@ -51,7 +51,7 @@ static textwindows dontinline uint32_t GetUserNameHash(void) {
|
|||
* @asyncsignalsafe
|
||||
* @vforksafe
|
||||
*/
|
||||
uint32_t getuid(void) {
|
||||
int getuid(void) {
|
||||
int rc;
|
||||
if (!IsWindows()) {
|
||||
rc = sys_getuid();
|
||||
|
@ -71,7 +71,7 @@ uint32_t getuid(void) {
|
|||
* @asyncsignalsafe
|
||||
* @vforksafe
|
||||
*/
|
||||
uint32_t getgid(void) {
|
||||
int getgid(void) {
|
||||
int rc;
|
||||
if (!IsWindows()) {
|
||||
rc = sys_getgid();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue