Changeset 96270 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Aug 17, 2022 4:48:22 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 153084
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/err/nocrt-strerror.cpp
r96073 r96270 34 34 #include <iprt/nocrt/errno.h> 35 35 #include <iprt/assert.h> 36 #include <iprt/log.h> 36 37 37 38 -
trunk/src/VBox/Runtime/r3/nocrt-setvbuf.cpp
r96091 r96270 41 41 int RT_NOCRT(setvbuf)(FILE *pFile, char *pchBuf, int iBufferingType, size_t cbBuf) 42 42 { 43 Assert(!pchBuf); /* ignored */44 Assert(!cbBuf); /* ignored */43 Assert(!pchBuf); RT_NOREF(pchBuf); /* ignored */ 44 Assert(!cbBuf); RT_NOREF(cbBuf); /* ignored */ 45 45 46 46 RTSTRMBUFMODE enmBufMode;
Note:
See TracChangeset
for help on using the changeset viewer.