Changes between Initial Version and Version 1 of Ticket #42531, comment 14


Ignore:
Timestamp:
Apr 25, 2014, 12:57:52 PM (10 years ago)
Author:
neverpanic (Clemens Lang)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #42531, comment 14

    initial v1  
    2929+#ifndef strlcpy
    3030+/*
    31 + * On OS X (and probably some other systems aswell), strlcat might be
     31+ * On OS X (and probably some other systems aswell), strlcpy might be
    3232+ * implemented as a macro. If this macro is defined while we're including this
    33 + * header, strlcat is already declared and trying to re-declare it with the
     33+ * header, strlcpy is already declared and trying to re-declare it with the
    3434+ * following line *will* fail, because the macro will expand to something
    3535+ * that's not a valid function name.