Skip to content
Snippets Groups Projects
Select Git revision
  • 27b86fdad9b5bd89a4a1e932599dd4252cb825c3
  • main default protected
  • devel
3 results

setup.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    shamalloc.h 250 B
    #ifndef SHAMALLOC_H
    #define SHAMALLOC_H
    
    #include <stdlib.h>
    #include <stdint.h>
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    int32_t shamalloc_time_until_broken = -1;
    
    void break_alloc(int32_t times);
    
    #ifdef __cplusplus
    }
    #endif
    
    #endif // SHAMALLOC_H