Skip to content

Commit

Permalink
Indenting mods for platform macro/includes.
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8193 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
erco77 committed Jan 5, 2011
1 parent 18ae07b commit 974c369
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions examples/table-sort.cxx
Expand Up @@ -47,16 +47,16 @@

#ifdef WIN32
// WINDOWS
#define DIRCMD "dir"
#define DIRHEADER { "Date", "Time", "Size", "Filename", "", "", "", "", "" }
#ifdef _MSC_VER
#define popen _popen
#endif
# define DIRCMD "dir"
# define DIRHEADER { "Date", "Time", "Size", "Filename", "", "", "", "", "" }
# ifdef _MSC_VER
# define popen _popen
# endif
#else /*WIN32*/
// UNIX
#include <ctype.h>
#define DIRCMD "ls -l"
#define DIRHEADER { "Perms", "#L", "Own", "Group", "Size", "Date", "", "", "Filename" }
# include <ctype.h>
# define DIRCMD "ls -l"
# define DIRHEADER { "Perms", "#L", "Own", "Group", "Size", "Date", "", "", "Filename" }
#endif /*WIN32*/

// A single row of columns
Expand Down

0 comments on commit 974c369

Please sign in to comment.