| 
									
										
										
										
											2009-09-27 20:25:34 -04:00
										 |  |  | USING: kernel alien.c-types alien.syntax math classes.struct | 
					
						
							|  |  |  | unix.time unix.types ;
 | 
					
						
							| 
									
										
										
										
											2007-04-14 05:27:15 -04:00
										 |  |  | IN: unix.stat | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ! NetBSD 4.0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-30 05:06:41 -04:00
										 |  |  | STRUCT: stat | 
					
						
							|  |  |  |     { st_dev dev_t } | 
					
						
							|  |  |  |     { st_mode mode_t } | 
					
						
							|  |  |  |     { st_ino ino_t } | 
					
						
							|  |  |  |     { st_nlink nlink_t } | 
					
						
							|  |  |  |     { st_uid uid_t } | 
					
						
							|  |  |  |     { st_gid gid_t } | 
					
						
							|  |  |  |     { st_rdev dev_t } | 
					
						
							|  |  |  |     { st_atimespec timespec } | 
					
						
							|  |  |  |     { st_mtimespec timespec } | 
					
						
							|  |  |  |     { st_ctimespec timespec } | 
					
						
							|  |  |  |     { st_birthtimespec timespec } | 
					
						
							|  |  |  |     { st_size off_t } | 
					
						
							|  |  |  |     { st_blocks blkcnt_t } | 
					
						
							|  |  |  |     { st_blksize blksize_t } | 
					
						
							|  |  |  |     { st_flags uint32_t } | 
					
						
							|  |  |  |     { st_gen uint32_t } | 
					
						
							|  |  |  |     { st_qspare uint32_t[2] } ;
 | 
					
						
							| 
									
										
										
										
											2007-04-14 05:27:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-23 14:42:02 -05:00
										 |  |  | FUNCTION: int __stat30  ( c-string pathname, stat* buf ) ;
 | 
					
						
							|  |  |  | FUNCTION: int __lstat30 ( c-string pathname, stat* buf ) ;
 | 
					
						
							| 
									
										
										
										
											2008-03-27 14:10:51 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-16 03:32:57 -05:00
										 |  |  | : stat ( pathname buf -- n ) __stat30 ;
 | 
					
						
							|  |  |  | : lstat ( pathname buf -- n ) __lstat30 ;
 |