environment/sysconftest.c

///////////////////////////////////////////////////////////////////////////////
// Filename: sysconftest.c
///////////////////////////////////////////////////////////////////////////////
// Purpose: get all constansts that are available via sysconf()
///////////////////////////////////////////////////////////////////////////////
// History:
// ========
//
// Date     Time     Name      Description   
// -------- -------- --------  ------------------------------------------------
// 96/02/29 02:41:48 muellerg: created
//
///////////////////////////////////////////////////////////////////////////////


// Feature test switches ///////////////////////////// Feature test switches //

// #define _POSIX_SOURCE 1
    /* NONE */



// System headers /////////////////////////////////////////// System headers //

#include <stdlib.h>
#include <unistd.h>


// Local headers ///////////////////////////////////////////// Local headers //

#include "../common.h"



// Macros /////////////////////////////////////////////////////////// Macros //
    /* NONE */



// File scope objects /////////////////////////////////// File scope objects //


struct testentry
{
    int name;
    char *argname;
    char *description;
};