Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 5499

Show
Ignore:
Timestamp:
07/16/10 20:05:27 (2 years ago)
Author:
mwarning
Message:

fixes #1957 :: use single memmove declaration; thanks wm4

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/io/FilePath.d

    r5449 r5499  
    2828private import  tango.io.model.IFile : FileConst, FileInfo; 
    2929 
    30 /******************************************************************************* 
    31  
    32 *******************************************************************************/ 
    33  
    34 private extern (C) void memmove (void* dst, void* src, uint bytes); 
     30private import tango.stdc.string : memmove; 
    3531 
    3632/******************************************************************************* 
  • trunk/tango/io/Path.d

    r5459 r5499  
    6363public  import  tango.core.Exception : IOException, IllegalArgumentException; 
    6464 
    65 private extern (C) void memmove (void* dst, void* src, uint bytes)
     65private import tango.stdc.string : memmove
    6666 
    6767 
  • trunk/tango/text/Text.d

    r5440 r5499  
    212212private import  Integer = tango.text.convert.Integer; 
    213213 
    214  
    215 /******************************************************************************* 
    216  
    217 *******************************************************************************/ 
    218  
    219 private extern (C) void memmove (void* dst, void* src, uint bytes); 
     214private import tango.stdc.string : memmove; 
    220215 
    221216 
  • trunk/tango/util/container/more/Vector.d

    r5480 r5499  
    1616 
    1717private import tango.core.Exception : ArrayBoundsException; 
    18  
    19 private extern(C) void memmove (void*, void*, int); 
     18private import tango.stdc.string : memmove; 
    2019 
    2120/******************************************************************************