/*
 * Read the contents of the named symbolic links
 */
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
 
 
int main( int argc, char** argv )
{
    char *buf = NULL; 
    printf("## The value ::%s\n",realpath("/proc/self/exe", buf ));
 
  return( 0 );
}
