diff options
| author | Mike Wey | 2011-10-02 19:56:18 +0200 |
|---|---|---|
| committer | Mike Wey | 2011-10-02 19:56:18 +0200 |
| commit | 08886e28931be6244de210a809e1d73d4d0ab6bf (patch) | |
| tree | 9103b4ecfceb6157783ca7399e29101b896682e4 /dmagick/DrawingContext.d | |
| parent | 75405b7ef6494565d56f0c9c996ca55817ad7554 (diff) | |
ssize_t isn't defined on windows.
Diffstat (limited to 'dmagick/DrawingContext.d')
| -rw-r--r-- | dmagick/DrawingContext.d | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dmagick/DrawingContext.d b/dmagick/DrawingContext.d index c6e4861..477c390 100644 --- a/dmagick/DrawingContext.d +++ b/dmagick/DrawingContext.d @@ -11,7 +11,6 @@ import std.array; import std.conv; import std.file; import std.string; -import core.sys.posix.sys.types; import dmagick.Color; import dmagick.Exception; @@ -25,6 +24,8 @@ import dmagick.c.draw; import dmagick.c.geometry; import dmagick.c.type; +alias ptrdiff_t ssize_t; + /** * Drawable provides a convenient interface for preparing vector, * image, or text arguments. |
