OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gdb-7.2/] [sim/] [testsuite/] [sim/] [cris/] [c/] [access1.c] - Rev 855

Go to most recent revision | Compare with Previous | Blame | View Log

/* Check access(2) trivially.  Newlib doesn't have it.
#notarget: cris*-*-elf
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
int main (int argc, char **argv)
{
  if (access (argv[0], R_OK|W_OK|X_OK) == 0
      && access ("/dev/null", R_OK|W_OK) == 0
      && access ("/dev/null", X_OK) == -1
      && errno == EACCES)
    printf ("pass\n");
  exit (0);
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.