You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2007/05/03 20:12:04 UTC

svn commit: r534950 - /incubator/stdcxx/trunk/tests/src/file.cpp

Author: sebor
Date: Thu May  3 11:12:03 2007
New Revision: 534950

URL: http://svn.apache.org/viewvc?view=rev&rev=534950
Log:
2007-05-03  Martin Sebor  <se...@roguewave.com>

	* file.cpp (P_tmpdir): Added a comment.

Modified:
    incubator/stdcxx/trunk/tests/src/file.cpp

Modified: incubator/stdcxx/trunk/tests/src/file.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/src/file.cpp?view=diff&rev=534950&r1=534949&r2=534950
==============================================================================
--- incubator/stdcxx/trunk/tests/src/file.cpp (original)
+++ incubator/stdcxx/trunk/tests/src/file.cpp Thu May  3 11:12:03 2007
@@ -63,6 +63,9 @@
 #endif
 
 #ifndef P_tmpdir
+   // P_tmpdir is an XSI (X/Open System Interfaces) extension
+   // to POSIX which need not be provided by otherwise conforming
+   // implementations
 #  define P_tmpdir "/tmp/"
 #endif