RetroArch/wii/libogc/include/ogc/lwp_config.h
orbea bfc366decc Squeeze extra blank lines with cat(1).
Example:

find . -type f -iname '*.c' | while read -r i; do
  cat -s "$i" > "$i.new"
  mv "$i.new" "$i"
done
2019-01-08 11:04:58 -08:00

19 lines
274 B
C

#ifndef __LWP_CONFIG_H__
#define __LWP_CONFIG_H__
#define LWP_MAX_MQUEUES 64
#define LWP_MAX_MUTEXES 64
#define LWP_MAX_THREADS 16
#define LWP_MAX_SEMAS 64
#define LWP_MAX_CONDVARS 64
#define LWP_MAX_TQUEUES 64
#define LWP_MAX_WATCHDOGS 64
#endif