2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Boost Jam code cleanup - minor stylistic changes.

[SVN r79415]
This commit is contained in:
Jurko Gospodnetić
2012-07-11 15:16:11 +00:00
parent 756793aba0
commit aa10d013bd
2 changed files with 1 additions and 3 deletions

View File

@@ -134,8 +134,6 @@ void file_dirscan( OBJECT * dir, scanback func, void * closure )
if ( !*dirstr ) dirstr = ".";
/* Now enter contents of directory. */
if ( !( dd = opendir( dirstr ) ) )
{
PROFILE_EXIT( FILE_DIRSCAN );

View File

@@ -53,7 +53,7 @@
#include <assert.h>
#include <stdlib.h>
#if !defined(NT) || defined(__GNUC__)
#if !defined( NT ) || defined( __GNUC__ )
#include <unistd.h> /* for unlink */
#endif