Showing with 3 additions and 3 deletions.
  1. +3 −3 src/core/thread.d
6 changes: 3 additions & 3 deletions src/core/thread.d
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ private
//
// from core.memory
//
extern (C) void gc_enable();
extern (C) void gc_disable();
extern (C) void* gc_malloc(size_t sz, uint ba = 0);
extern (C) void gc_enable() nothrow;
extern (C) void gc_disable() nothrow;
extern (C) void* gc_malloc(size_t sz, uint ba = 0, const TypeInfo = null) pure nothrow;

//
// from core.stdc.string
Expand Down