It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit.
		
			
				
	
	
		
			41 lines
		
	
	
		
			894 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			894 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* vi: set sw=4 ts=4: */
 | 
						|
/*
 | 
						|
 * Mini readlink implementation for busybox
 | 
						|
 *
 | 
						|
 * Copyright (C) 2000,2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
 | 
						|
 *
 | 
						|
 * Licensed under GPL v2 or later, see file LICENSE in this tarball for details.
 | 
						|
 */
 | 
						|
 | 
						|
#include "busybox.h"
 | 
						|
#include <errno.h>
 | 
						|
#include <unistd.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <getopt.h>
 | 
						|
 | 
						|
#define READLINK_FLAG_f	(1 << 0)
 | 
						|
 | 
						|
int readlink_main(int argc, char **argv)
 | 
						|
{
 | 
						|
	char *buf;
 | 
						|
	unsigned opt = ENABLE_FEATURE_READLINK_FOLLOW ?
 | 
						|
			getopt32(argc, argv, "f") : 0;
 | 
						|
 | 
						|
	if (argc != (ENABLE_FEATURE_READLINK_FOLLOW ? optind + 1 : 2))
 | 
						|
			bb_show_usage();
 | 
						|
 | 
						|
	if (opt & READLINK_FLAG_f)
 | 
						|
		buf = realpath(argv[optind], bb_common_bufsiz1);
 | 
						|
	else
 | 
						|
		buf = xreadlink(argv[ENABLE_FEATURE_READLINK_FOLLOW ? optind : 1]);
 | 
						|
 | 
						|
	if (!buf)
 | 
						|
		return EXIT_FAILURE;
 | 
						|
	puts(buf);
 | 
						|
 | 
						|
	if (ENABLE_FEATURE_CLEAN_UP && buf != bb_common_bufsiz1)
 | 
						|
		free(buf);
 | 
						|
 | 
						|
	return EXIT_SUCCESS;
 | 
						|
}
 |