diff options
author | 2011-02-14 15:11:14 -0600 | |
---|---|---|
committer | 2011-02-18 15:09:26 -0600 | |
commit | 821440c7afa4c53b45b58f945aa45dc87f29a82e (patch) | |
tree | 65c3ebead4b921f382c0474b61f1e0da4e22cb02 /ports/darwin/guts/getxattr.c | |
parent | 96f54bda80a5692c5c85e3aa74ffbd791c5b89d1 (diff) | |
download | pseudo-821440c7afa4c53b45b58f945aa45dc87f29a82e.tar.gz pseudo-821440c7afa4c53b45b58f945aa45dc87f29a82e.tar.bz2 pseudo-821440c7afa4c53b45b58f945aa45dc87f29a82e.zip |
Ports redesign plus some other stuff to be split out again
later.
Diffstat (limited to 'ports/darwin/guts/getxattr.c')
-rw-r--r-- | ports/darwin/guts/getxattr.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ports/darwin/guts/getxattr.c b/ports/darwin/guts/getxattr.c new file mode 100644 index 0000000..96fc1e8 --- /dev/null +++ b/ports/darwin/guts/getxattr.c @@ -0,0 +1,13 @@ +/* + * Copyright (c) 2011 Wind River Systems; see + * guts/COPYRIGHT for information. + * + * ssize_t getxattr(const char *pathname, const char *name, void *value, size_t size) + * ssize_t rc = -1; + */ + + rc = real_getxattr(pathname, name, value, size); + +/* return rc; + * } + */ |