$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r80302 - trunk/tools/build/v2/engine
From: jurko.gospodnetic_at_[hidden]
Date: 2012-08-29 11:04:59
Author: jurko
Date: 2012-08-29 11:04:59 EDT (Wed, 29 Aug 2012)
New Revision: 80302
URL: http://svn.boost.org/trac/boost/changeset/80302
Log:
Internal Boost Jam cleanup - minor stylistic changes (corrected header include order, removed stale function comment, empty line added).
Text files modified: 
   trunk/tools/build/v2/engine/variable.c |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/tools/build/v2/engine/variable.c
==============================================================================
--- trunk/tools/build/v2/engine/variable.c	(original)
+++ trunk/tools/build/v2/engine/variable.c	2012-08-29 11:04:59 EDT (Wed, 29 Aug 2012)
@@ -19,7 +19,6 @@
  * External routines:
  *
  *  var_defines() - load a bunch of variable=value settings
- *  var_string()  - expand a string with variables in it
  *  var_get()     - get value of a user defined symbol
  *  var_set()     - set a variable in jam's user defined symbol table.
  *  var_swap()    - swap a variable's value with the given one
@@ -41,8 +40,8 @@
 #include "pathsys.h"
 #include "strings.h"
 
-#include <stdlib.h>
 #include <stdio.h>
+#include <stdlib.h>
 
 
 /*
@@ -232,6 +231,7 @@
     return result;
 }
 
+
 /*
  * var_set() - set a variable in Jam's user defined symbol table
  *