Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1065 from dsp/fix-import
Browse files Browse the repository at this point in the history
Sync gc_* declrations with core.memory
  • Loading branch information
AndrejMitrovic committed Dec 13, 2014
2 parents 653abb8 + bc1788c commit 0cf1471
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 0cf1471

Please sign in to comment.