[svn:parrot] r47066 - trunk/include/parrot

bacek at svn.parrot.org bacek at svn.parrot.org
Thu May 27 21:53:29 UTC 2010


Author: bacek
Date: Thu May 27 21:53:29 2010
New Revision: 47066
URL: https://trac.parrot.org/parrot/changeset/47066

Log:
Decorate Parrot_gmtime_r, localtime_r and asctime_r with PARROT_EXPORT for consistency with implementation.

Modified:
   trunk/include/parrot/platform_interface.h

Modified: trunk/include/parrot/platform_interface.h
==============================================================================
--- trunk/include/parrot/platform_interface.h	Thu May 27 21:48:11 2010	(r47065)
+++ trunk/include/parrot/platform_interface.h	Thu May 27 21:53:29 2010	(r47066)
@@ -57,8 +57,14 @@
 void Parrot_usleep(unsigned int microseconds);
 INTVAL Parrot_intval_time(void);
 FLOATVAL Parrot_floatval_time(void);
+
+PARROT_EXPORT
 struct tm * Parrot_gmtime_r(const time_t *, struct tm *);
+
+PARROT_EXPORT
 struct tm * Parrot_localtime_r(const time_t *, struct tm *);
+
+PARROT_EXPORT
 char* Parrot_asctime_r(const struct tm*, char *);
 
 /*


More information about the parrot-commits mailing list