#include <sys/types.h>
#include <sys/stat.h>
/* #include "httpd.h" */

void main(int argc, char *argv[]){
  int statr;
  struct stat finfo;
  statr = stat(argv[1], &finfo);

  printf("%s :  %i\n", argv[1], finfo.st_dev);
}
