mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-02-07 05:52:35 +00:00
There are only the 3 names in our entire source that use non-ASCII characters. Our documentation can still use any type of character. We want to limit source to ASCII for safety reasons.
27 lines
488 B
C
27 lines
488 B
C
/*
|
|
* Copyright (c) 2009 by
|
|
* Ralf Corsepius, Ulm, Germany. All rights reserved.
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software
|
|
* is freely granted, provided that this notice is preserved.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
|
|
int main(void)
|
|
{
|
|
int fd1;
|
|
int fd2;
|
|
|
|
fd1 = open("/tmp/foo1", O_RDWR | O_APPEND);
|
|
fd2 = open("/tmp/foo2", O_CREAT, S_IWUSR);
|
|
|
|
return (fd1 != fd2);
|
|
}
|