readdir.c (ef18a7a8412761934bcfa18b04a1fb8d5092b874) | readdir.c (613100918de03164200eb28f7db1a2b1d701a697) |
---|---|
1/* 2 * Copyright (c) 1983, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 32 unchanged lines hidden (view full) --- 41#include <sys/param.h> 42#include <dirent.h> 43#include <errno.h> 44#include <string.h> 45#include <pthread.h> 46#include "un-namespace.h" 47 48#include "libc_private.h" | 1/* 2 * Copyright (c) 1983, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 32 unchanged lines hidden (view full) --- 41#include <sys/param.h> 42#include <dirent.h> 43#include <errno.h> 44#include <string.h> 45#include <pthread.h> 46#include "un-namespace.h" 47 48#include "libc_private.h" |
49#include "telldir.h" |
|
49 50/* 51 * get next entry in a directory. 52 */ 53struct dirent * 54_readdir_unlocked(dirp) 55 DIR *dirp; 56{ --- 78 unchanged lines hidden --- | 50 51/* 52 * get next entry in a directory. 53 */ 54struct dirent * 55_readdir_unlocked(dirp) 56 DIR *dirp; 57{ --- 78 unchanged lines hidden --- |